class Users::ErrorsController
Public Instance Methods
Source
# File app/controllers/users/errors_controller.rb, line 12 def organisation_not_found if @cis2_info.present? render status: :not_found else redirect_to root_path end end
Source
# File app/controllers/users/errors_controller.rb, line 28 def role_not_found if @cis2_info.present? render status: :not_found else redirect_to root_path end end
Source
# File app/controllers/users/errors_controller.rb, line 20 def workgroup_not_found if @cis2_info.present? render status: :not_found else redirect_to root_path end end