-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat(cli): deploy command including org scope #232
feat(cli): deploy command including org scope #232
Conversation
- added logic to be able to add plugins to an organization - also added text to show user where the plugin can be found inside organization
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
After merging, the version of CLI still needs to be bumped and a new release created |
packages/cli/src/commands/deploy.ts
Outdated
!accessibleToMyPlugins && | ||
!accessibleToPartnerPortal && | ||
!accessibleToOrganizationPortal | ||
) { | ||
console.error( | ||
red('[ERROR]'), | ||
`The token appears to be invalid as it does not have access to either My Plugins or the plugins on the Partner Portal.`, |
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.
We need to include the organization portal 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.
true :D haha let me quickly add it
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.
Nice work !
What?
Since past 2 weeks a new feature has been added to the product where organizations are able to create their own field plugins. For this new feature a new API endpoint has been added so we need to consider it inside our CLI to give the user the option to deploy to an organisation.
Why?
JIRA: EXT-1849
How to test? (optional)