-
Notifications
You must be signed in to change notification settings - Fork 89
chore: update staged resource types #7871
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -304,13 +304,13 @@ export const mockConsentableItems: ConsentableItem[] = [ | |
| }, | ||
| ]; | ||
|
|
||
| // Mock data for Okta applications | ||
| export const MOCK_OKTA_APPS = [ | ||
| // Mock data for IDP applications | ||
| export const MOCK_IDP_APPS = [ | ||
| { | ||
| urn: "urn:okta:app:12345678-1234-1234-1234-123456789012", | ||
| name: "Salesforce", | ||
| description: "Customer relationship management platform", | ||
| resource_type: "Okta App", | ||
| resource_type: "IDP App", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| diff_status: "addition", | ||
| updated_at: "2024-01-15T10:30:00Z", | ||
| monitor_config_id: "okta_monitor_001", | ||
|
|
||
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.
MOCK_IDP_APPSdoesn't appear to be imported anywhere in the codebase (the oldMOCK_OKTA_APPSalso had no consumers). If this export is only kept for future use, a comment noting that would be helpful; if it's genuinely unused, it can be removed to avoid dead code.