Add confirmation step to account suspensions (#8353)
* Add confirmation page for suspensions * Suspension confirmation closes reports, linked from report UI * Fix tests
This commit is contained in:
parent
28de046b8b
commit
2374a00c10
12 changed files with 92 additions and 29 deletions
|
@ -414,6 +414,12 @@ en:
|
|||
last_delivery: Last delivery
|
||||
title: WebSub
|
||||
topic: Topic
|
||||
suspensions:
|
||||
bad_acct_msg: The confirmation value didn't match up. Are you suspending the right account?
|
||||
hint_html: 'To confirm the suspension of the account, please enter %{value} into the field below:'
|
||||
proceed: Proceed
|
||||
title: Suspend %{acct}
|
||||
warning_html: 'Suspending this account will <strong>irreversibly</strong> delete data from this account, which includes:'
|
||||
title: Administration
|
||||
admin_mailer:
|
||||
new_report:
|
||||
|
|
|
@ -174,7 +174,7 @@ Rails.application.routes.draw do
|
|||
resource :change_email, only: [:show, :update]
|
||||
resource :reset, only: [:create]
|
||||
resource :silence, only: [:create, :destroy]
|
||||
resource :suspension, only: [:create, :destroy]
|
||||
resource :suspension, only: [:new, :create, :destroy]
|
||||
resources :statuses, only: [:index, :create, :update, :destroy]
|
||||
|
||||
resource :confirmation, only: [:create] do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue