Class: Decidim::AccountController
Overview
The controller to handle the user’s account page.
Instance Method Summary
collapse
#available_verification_workflows
Methods included from UserGroups
#enforce_user_groups_enabled
#check_user_block_status, #check_user_not_blocked
#snippets
#disable_http_caching
#skip_store_location?, #store_current_location
register_permissions
enhance_controller, extended, included
Instance Method Details
#cancel_email_change ⇒ Object
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# File 'app/controllers/decidim/account_controller.rb', line 81
def cancel_email_change
enforce_permission_to :update, :user, current_user: current_user
if current_user.unconfirmed_email
current_user.update(unconfirmed_email: nil)
respond_to do |format|
handle_alert(:success, t("cancel_successfully", scope: "decidim.account.email_change"))
format.js
end
else
respond_to do |format|
handle_alert(:alert, t("cancel_error", scope: "decidim.account.email_change"))
format.js
end
end
end
|
#delete ⇒ Object
38
39
40
41
|
# File 'app/controllers/decidim/account_controller.rb', line 38
def delete
enforce_permission_to :delete, :user, current_user: current_user
@form = form(DeleteAccountForm).from_model(current_user)
end
|
#destroy ⇒ Object
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# File 'app/controllers/decidim/account_controller.rb', line 43
def destroy
enforce_permission_to :delete, :user, current_user: current_user
@form = form(DeleteAccountForm).from_params(params)
DestroyAccount.call(current_user, @form) do
on(:ok) do
sign_out(current_user)
flash[:notice] = t("account.destroy.success", scope: "decidim")
end
on(:invalid) do
flash[:alert] = t("account.destroy.error", scope: "decidim")
end
end
redirect_to decidim.root_path
end
|
#resend_confirmation_instructions ⇒ Object
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# File 'app/controllers/decidim/account_controller.rb', line 61
def resend_confirmation_instructions
enforce_permission_to :update, :user, current_user: current_user
ResendConfirmationInstructions.call(current_user) do
on(:ok) do
respond_to do |format|
handle_alert(:success, t("resend_successfully", scope: "decidim.account.email_change", unconfirmed_email: current_user.unconfirmed_email))
format.js
end
end
on(:invalid) do
respond_to do |format|
handle_alert(:alert, t("resend_error", scope: "decidim.account.email_change"))
format.js
end
end
end
end
|
#show ⇒ Object
10
11
12
13
|
# File 'app/controllers/decidim/account_controller.rb', line 10
def show
enforce_permission_to :show, :user, current_user: current_user
@account = form(AccountForm).from_model(current_user)
end
|
#update ⇒ Object
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'app/controllers/decidim/account_controller.rb', line 15
def update
enforce_permission_to :update, :user, current_user: current_user
@account = form(AccountForm).from_params(account_params)
UpdateAccount.call(current_user, @account) do
on(:ok) do |email_is_unconfirmed|
flash[:notice] = if email_is_unconfirmed
t("account.update.success_with_email_confirmation", scope: "decidim")
else
t("account.update.success", scope: "decidim")
end
bypass_sign_in(current_user)
redirect_to account_path(locale: current_user.reload.locale)
end
on(:invalid) do
flash[:alert] = t("account.update.error", scope: "decidim")
render action: :show
end
end
end
|