Class: Admin::UsersController

Inherits:
AdminController show all
Defined in:
app/controllers/admin/users_controller.rb

Instance Attribute Summary

Attributes included from PagesCore::Authentication

#current_user

Instance Method Summary collapse

Methods inherited from PagesCore::AdminController

#redirect, underscore

Methods included from PagesCore::StaticCacheController

#disable_static_cache!

Methods included from PagesCore::PoliciesHelper

#policy, #verify_policy, #verify_policy_with_proc

Methods included from PagesCore::ProcessTitler

inc_number_of_requests, original_title

Methods included from PagesCore::ErrorRenderer

#render_error

Methods included from PagesCore::Authentication

#authenticate!, #deauthenticate!, #logged_in?

Instance Method Details

#createObject



32
33
34
35
36
37
38
39
40
# File 'app/controllers/admin/users_controller.rb', line 32

def create
  @user = PagesCore::CreateUserService.call(user_params)
  if @user.valid?
    authenticate!(@user)
    redirect_to admin_default_url
  else
    render action: :new
  end
end

#deactivatedObject



17
18
19
20
# File 'app/controllers/admin/users_controller.rb', line 17

def deactivated
  @users = User.deactivated
  @invites = []
end

#delete_imageObject



63
64
65
66
67
68
69
# File 'app/controllers/admin/users_controller.rb', line 63

def delete_image
  @user.image.destroy
  respond_to do |format|
    format.js   { render text: "The profile picture has been deleted." }
    format.html { redirect_to(edit_admin_user_url(@user)) }
  end
end

#destroyObject



56
57
58
59
60
61
# File 'app/controllers/admin/users_controller.rb', line 56

def destroy
  @user = User.find(params[:id])
  flash[:notice] = "User <strong>#{@user.email}</strong> has been deleted"
  @user.destroy
  redirect_to admin_users_url
end

#editObject



44
# File 'app/controllers/admin/users_controller.rb', line 44

def edit; end

#indexObject



12
13
14
15
# File 'app/controllers/admin/users_controller.rb', line 12

def index
  @users = User.activated
  @invites = Invite.all.order("created_at DESC")
end

#loginObject



22
23
24
25
26
# File 'app/controllers/admin/users_controller.rb', line 22

def 
  return unless logged_in?

  redirect_to admin_default_url
end

#newObject



28
29
30
# File 'app/controllers/admin/users_controller.rb', line 28

def new
  @user = User.new
end

#showObject



42
# File 'app/controllers/admin/users_controller.rb', line 42

def show; end

#updateObject



46
47
48
49
50
51
52
53
54
# File 'app/controllers/admin/users_controller.rb', line 46

def update
  if @user.update(user_params_with_roles)
    flash[:notice] = "Your changed to #{@user.name} were saved."
    redirect_to admin_users_url
  else
    flash.now[:error] = "There were problems saving your changes."
    render action: :edit
  end
end