Class: Helpdesk::ApplicationController

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

Instance Method Summary collapse

Instance Method Details

#default_url_options(options = {}) ⇒ Object



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

def default_url_options(options={})
  { :locale => I18n.locale}
end

#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