forked from External/greenlight
Added the ability for admins to send a reset password email for users (#737)
This commit is contained in:
committed by
Jesus Federico
parent
1256554ce6
commit
7e3c44575e
@ -75,6 +75,7 @@ en:
|
||||
invite_email_verification: Emails must be enabled in order to use this method. Please contact your system administrator.
|
||||
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)
|
||||
settings: Site Settings successfully changed
|
||||
unauthorized: You are not authorized to perform actions on this user
|
||||
recordings:
|
||||
@ -262,11 +263,11 @@ en:
|
||||
username: Your username is %{email}.
|
||||
password_reset:
|
||||
title: 'Password reset'
|
||||
welcome: It seems like you forgot your password for %{bigbluebutton}
|
||||
message: 'If this is true, please click the link below to reset your password:'
|
||||
welcome: A password reset has been requested for the email <b>%{email}</b>
|
||||
message: 'If you requested this reset, then please click the link below to reset your password:'
|
||||
reset_link: Reset Password
|
||||
expire: This link will expire in two hours.
|
||||
ignore: You can safely ignore this email if you did not request a password reset.
|
||||
ignore: You can safely ignore this email if you did not make this request.
|
||||
promoted:
|
||||
admins_link: Visit the Organization Page
|
||||
info: You are now an %{role} on %{url}.
|
||||
|
@ -51,6 +51,7 @@ Rails.application.routes.draw do
|
||||
post '/invite', to: 'admins#invite', as: :invite_user
|
||||
post '/registration_method/:method', to: 'admins#registration_method', as: :admin_change_registration
|
||||
post '/approve/:user_uid', to: 'admins#approve', as: :admin_approve
|
||||
get '/reset', to: 'admins#reset', as: :admin_reset
|
||||
post '/room_limit', to: 'admins#room_limit', as: :admin_room_limit
|
||||
post '/default_recording_visibility', to: 'admins#default_recording_visibility', as: :admin_recording_visibility
|
||||
get '/roles', to: 'admins#roles', as: :admin_roles
|
||||
|
Reference in New Issue
Block a user