Module: Hyrax::Controller

Extended by:
ActiveSupport::Concern
Defined in:
app/controllers/concerns/hyrax/controller.rb

Instance Method Summary collapse

Instance Method Details

#create_work_presenterObject

A presenter for selecting a work type to create this is needed here because the selector is in the header on every page



22
23
24
# File 'app/controllers/concerns/hyrax/controller.rb', line 22

def create_work_presenter
  @create_work_presenter ||= create_work_presenter_class.new(current_user)
end

#default_url_optionsObject

Ensure that the locale choice is persistent across requests



27
28
29
# File 'app/controllers/concerns/hyrax/controller.rb', line 27

def default_url_options
  super.merge(locale: I18n.locale)
end

#user_root_pathObject

Provide a place for Devise to send the user to after signing in



16
17
18
# File 'app/controllers/concerns/hyrax/controller.rb', line 16

def user_root_path
  hyrax.dashboard_path
end