forked from External/greenlight
GRN2-247: Added Active Pending Banned Deleted tabs to manage users (#816)
* Added Active Pending Banned Deleted tabs to manage users * Removed hard coded strings * Fixed issues with sign in flow * Fixed issues with rooms not deleting
This commit is contained in:
committed by
Jesus Federico
parent
03bde37a2b
commit
49def8f405
@ -77,9 +77,11 @@ en:
|
||||
demoted: User has been successfully demoted
|
||||
invite: Invite successfully sent to %{email}
|
||||
invite_email_verification: Emails must be enabled in order to use this method. Please contact your system administrator.
|
||||
perm_deleted: User has been permanently deleted
|
||||
promoted: User has been successfully promoted
|
||||
registration_method_updated: Registration method successfully updated
|
||||
reset_password: The user has been sent an email to reset their password. (Please ask them to check their spam folder if they haven't received it)
|
||||
restored: User has been successfully restored
|
||||
settings: Site Settings successfully changed
|
||||
unauthorized: You are not authorized to perform actions on this user
|
||||
recordings:
|
||||
@ -116,7 +118,9 @@ en:
|
||||
delete: Delete
|
||||
edit: Edit
|
||||
edit_roles: Edit the user roles
|
||||
perm_delete: Permanently Delete
|
||||
unban: Unban User
|
||||
undelete: Undelete
|
||||
table:
|
||||
authenticator: Authenticator
|
||||
created: Created
|
||||
@ -307,6 +311,7 @@ en:
|
||||
confirm: Are you sure you want to delete this account?
|
||||
delete: I'm sure, delete this account.
|
||||
keep: Actually, I'll keep it.
|
||||
delete_warning: This will deactivate the user's account. All deactived users can be found under the deleted tab.
|
||||
warning: This decision is final. You will <b>not</b> be able to recover associated data.
|
||||
delete_room:
|
||||
confirm: Are you sure you want to delete %{room}?
|
||||
@ -401,8 +406,10 @@ en:
|
||||
confirm: New Password Confirmation
|
||||
update: Update Password
|
||||
roles:
|
||||
active: Active
|
||||
admin: Admin
|
||||
banned: Banned
|
||||
deleted: Deleted
|
||||
pending: Pending
|
||||
user: User
|
||||
room:
|
||||
|
@ -48,6 +48,7 @@ Rails.application.routes.draw do
|
||||
post '/invite', to: 'admins#invite', as: :invite_user
|
||||
post '/approve/:user_uid', to: 'admins#approve', as: :admin_approve
|
||||
get '/reset', to: 'admins#reset', as: :admin_reset
|
||||
post '/undelete', to: 'admins#undelete', as: :admin_undelete
|
||||
# Site Settings
|
||||
post '/update_settings', to: 'admins#update_settings', as: :admin_update_settings
|
||||
post '/registration_method', to: 'admins#registration_method', as: :admin_change_registration
|
||||
|
Reference in New Issue
Block a user