Class: Helpdesk::ApplicationController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/helpdesk/application_controller.rb

Instance Method Summary collapse

Instance Method Details

#ensure_userObject



11
12
13
14
15
# File 'app/controllers/helpdesk/application_controller.rb', line 11

def ensure_user
  if !helpdesk_user
    redirect_to main_app.send(Helpdesk.)
  end
end

#helpdesk_admin?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'app/controllers/helpdesk/application_controller.rb', line 17

def helpdesk_admin?
  helpdesk_user && (can? :manage, 'helpdesk')
end