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



24
25
26
# File 'app/controllers/concerns/hyrax/controller.rb', line 24

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



29
30
31
# File 'app/controllers/concerns/hyrax/controller.rb', line 29

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



18
19
20
# File 'app/controllers/concerns/hyrax/controller.rb', line 18

def user_root_path
  hyrax.dashboard_index_path
end