-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ALS-6655 & ALS-6699] Login, Themes, & Dynamic authentication providers #62
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JamesPeck
force-pushed
the
feature/dynamic-login-options
branch
from
June 10, 2024 18:38
3b7cec7
to
fada722
Compare
srpiatt
reviewed
Jun 20, 2024
srpiatt
approved these changes
Jun 20, 2024
Is this PR for ALS-6655? |
JamesPeck
changed the title
Dynamic authentication providers
[ALS-6655] Dynamic authentication providers
Jun 21, 2024
Co-Authored-By: Samantha <21109191+srpiatt@users.noreply.github.com>
Co-authored-by: Samantha <21109191+srpiatt@users.noreply.github.com>
JamesPeck
force-pushed
the
feature/dynamic-login-options
branch
from
June 21, 2024 17:05
2f96b8f
to
2714088
Compare
JamesPeck
changed the title
[ALS-6655] Dynamic authentication providers
[ALS-6655 & ALS-6699] Dynamic authentication providers
Jun 21, 2024
JamesPeck
changed the title
[ALS-6655 & ALS-6699] Dynamic authentication providers
[ALS-6655 & ALS-6699] Login, Themes, & Dynamic authentication providers
Jun 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
ALS-6655 & ALS-6699
Includes changes from #73
This PR is to allow for admins of pic-sure to easily add new auth providers. We currently Support:
Admin can edit values in their .env files.
VITE_AUTH_PROVIDER_MODULE
is the prefix for any authorization providers you want to use.We currently support 3 types of authorization providers: AUTH0, Gen3 FENCE, and RAS.
You can add as many authorization providers as you want by adding more
VITE_AUTH_PROVIDER_MODULE_
variables.You can have n number of each type of authorization provider. When the server starts it will automatically add the authorization providers to the login page if they are enabled.The pattern for adding authorization providers is as follows:
VITE_AUTH_PROVIDER_MODULE_<PROVIDER_NAME>_<FIELD>=<VALUE>
See
.env.example
Adds new themes & logos