I'm in the process of implementing Devise into a Rails app, and all the files generated by Devise just seem to reference a superclass, as in
class Users::SessionsController < Devise::SessionsController
before_action :configure_sign_in_params, only: [:create]
def new
super
end
which is fine, but when I search my project directory for Devise::SessionsController (or any of the other classes referenced) it's nowhere to be found. Am I missing something? Thanks for any help.