-
Notifications
You must be signed in to change notification settings - Fork 37
feat: add interactivity to quickstarts #518
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
base: main
Are you sure you want to change the base?
Conversation
| this.resourceServerStore = new ResourceServerStore(this); | ||
| this.variableStore = new VariableStore(this); | ||
| this.featureFlagStore = new FeatureFlagStore(this); | ||
| this.config = config; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding config to rootStore in order to leverage apiBaseUrl as config.
|
|
||
| if (window.rootStore) { | ||
| // If this create component is re-mounted, clear any selected client | ||
| window.rootStore.clientStore.setSelectedClient(null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After an app creation, navigating away to another framework will reset the clientId
7c0156f to
b936924
Compare
b936924 to
e4d9ab0
Compare
| AUTH0_CLIENT_SECRET=YOUR_AUTH0_APP_CLIENT_SECRET | ||
| AUTH0_SECRET=YOUR_LONG_RANDOM_SECRET_HERE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@darrickyong We should auto-fill both AUTH0_CLIENT_SECRET and AUTH0_SECRET values.
- AUTH0_CLIENT_SECRET can be obtained from the respective app details on the tenant
- AUTH0_SECRET is a random string that the component should auto-generate on the fly. eg:
openssl rand -hex 32
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brth31 given the internal conversation that we had, we will not include 'secret' values yet.
ℹ️ We'll work together to scope out work to create this UI/UX for our customers seperately as an n+1 to this work.
By submitting a PR to this repository, you agree to the terms within the Auth0 Code of Conduct. Please see the contributing guidelines for how to create and submit a high-quality PR for this repo.
Description
This PR adds interactivity to quickstarts for certain frameworks:
References
Testing
Testing was performed locally with
manage.localto confirm that applications were properly created with the arguments provided.Checklist