Replies: 2 comments 8 replies
-
if the administrator is responsible for adding users and the user does not require email verification, you as a developer simply make the user account active during registration by the admin. Email verification is only required if you put |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can disable any feature you want from the config. and by default shield no need second factor authentication. Lines 155 to 179 in 81a0bef |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There are cases when someone doesn't need the email verification, magic login, register and second factor authentication view links. For example, in my system only the login and verify magic login hash links are required. This is because the administrator is responsible for adding users to the system. Once they are added to the system the user is given a username and password set on their account. If a user forgets their password the administrator generates a magic login hash and it gets sent to their email address which they afterwards use it to log into their account using the provided verify magic login hash link and they themselves set a new password on their account. So what I do need is to find a way to disable the email verification, magic login, register and second factor authentication view links because when you leave them there and a malicious person finds out you have used shield they can easily navigate to the view if the view links are not disabled like we disable the registration view link.
Beta Was this translation helpful? Give feedback.
All reactions