-
Notifications
You must be signed in to change notification settings - Fork 143
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
When creating a new app, default to using required_scopes
#5091
base: main
Are you sure you want to change the base?
When creating a new app, default to using required_scopes
#5091
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
Coverage report
Show files with reduced coverage 🔻
Test suite run success1975 tests passing in 896 suites. Report generated by 🧪jest coverage report action from 440bc82 |
@@ -930,7 +930,7 @@ | |||
specificationIdentifier: AppAccessSpecIdentifier, | |||
config: { | |||
redirect_url_allowlist: isLaunchable ? ['https://example.com/api/auth'] : [MAGIC_REDIRECT_URL], | |||
...(scopesArray && {scopes: scopesArray.map((scope) => scope.trim()).join(',')}), | |||
...(scopesArray && {required_scopes: scopesArray.map((scope) => scope.trim())}), |
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.
Note to self: this is only for app management. For partners, this will happen in https://app.graphite.dev/github/pr/Shopify/shopify/561286
This PR seems inactive. If it's still relevant, please add a comment saying so. Otherwise, take no action. |
WHY are these changes introduced?
Fixes #0000
WHAT is this pull request doing?
How to test your changes?
Post-release steps
Measuring impact
How do we know this change was effective? Please choose one:
Checklist