-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Add okta-app-manager extension #25000
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
|
Congratulations on your new Raycast extension! 🚀 We're currently experiencing a high volume of incoming requests. As a result, the initial review may take up to 10-15 business days. Once the PR is approved and merged, the extension will be available on our Store. |
Greptile OverviewGreptile SummaryThis PR adds a new Okta Manager extension that allows users to manage Okta applications, users, and groups through Raycast. The extension provides search functionality and editing capabilities for OIDC redirect URIs, SAML settings, user profiles, and group metadata. Key Changes:
Critical Issues:
Code Quality:
Confidence Score: 2/5
Important Files Changed
|
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.
5 files reviewed, 2 comments
| "commands": [ | ||
| { | ||
| "name": "manage-environments", | ||
| "title": "Manage Environments", | ||
| "description": "Switch between Okta environments", | ||
| "mode": "view" | ||
| }, | ||
| { | ||
| "name": "search-apps", | ||
| "title": "Search Apps", | ||
| "description": "Search and manage Okta applications", | ||
| "mode": "view" | ||
| }, | ||
| { | ||
| "name": "search-users", | ||
| "title": "Search Users", | ||
| "description": "Search and manage Okta users", | ||
| "mode": "view" | ||
| }, | ||
| { | ||
| "name": "search-groups", | ||
| "title": "Search Groups", | ||
| "description": "Search and manage Okta groups", | ||
| "mode": "view" | ||
| } | ||
| ], |
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.
Missing metadata/ folder with screenshots. All view-type commands require Raycast-styled screenshots in a metadata/ folder for the store.
Context Used: Rule from dashboard - What: Extensions with view-type commands must include a metadata/ folder containing Raycast-styled... (source)
| } | ||
|
|
||
| async function handleDelete(name: string) { | ||
| if (confirm(`Delete environment "${name}"?`)) { |
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.
confirm() is not available in Raycast. Use Action with confirmation or Alert API instead.
Description
Screencast
Checklist
npm run buildand tested this distribution build in Raycastassetsfolder are used by the extension itselfREADMEare placed outside of themetadatafolder