Class: Spotlight::AdminUsersController

Inherits:
ApplicationController show all
Defined in:
app/controllers/spotlight/admin_users_controller.rb

Overview

A controller to handle the adminstration of site admin users

Instance Method Summary collapse

Methods included from Concerns::ApplicationController

#enabled_in_spotlight_view_type_configuration?, #field_enabled?

Methods included from Controller

#blacklight_config, #current_exhibit, #current_masthead, #current_masthead=, #current_site, #default_url_options, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #resource_masthead?, #search_action_url, #search_facet_url, #set_exhibit_locale_scope, #set_locale

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#createObject



15
16
17
18
19
20
21
22
23
24
# File 'app/controllers/spotlight/admin_users_controller.rb', line 15

def create
  if update_roles
    Spotlight::InviteUsersService.call(resource: @site)
    flash[:notice] = t('spotlight.admin_users.create.success')
  else
    flash[:error] = t('spotlight.admin_users.create.error')
  end

  redirect_to spotlight.admin_users_path
end

#destroyObject



38
39
40
41
42
43
44
45
46
# File 'app/controllers/spotlight/admin_users_controller.rb', line 38

def destroy
  user = Spotlight::Engine.user_class.find(params[:id])
  if user.roles.where(resource: @site).first.destroy
    flash[:notice] = t('spotlight.admin_users.destroy.success')
  else
    flash[:error] = t('spotlight.admin_users.destroy.error')
  end
  redirect_to spotlight.admin_users_path
end

#indexObject



13
# File 'app/controllers/spotlight/admin_users_controller.rb', line 13

def index; end

#updateObject



26
27
28
29
30
31
32
33
34
35
36
# File 'app/controllers/spotlight/admin_users_controller.rb', line 26

def update
  user = Spotlight::Engine.user_class.find(params[:id])
  if user
    Spotlight::Role.create(user_key: user.email, role: 'admin', resource: @site).save
    flash[:notice] = t('spotlight.admin_users.create.success')
  else
    flash[:error] = t('spotlight.admin_users.create.error')
  end

  redirect_to spotlight.admin_users_path
end