-
-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: read logs and update cors maintenance root-role permissions (#8996
) Additional granular permissions related to instance-level access. - CORS settings - Reading logs (both instance logs and login history) --------- Co-authored-by: Gastón Fournier <gaston@getunleash.io>
- Loading branch information
1 parent
cb77b10
commit dc4a760
Showing
11 changed files
with
149 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { ADMIN } from 'component/providers/AccessProvider/permissions'; | ||
import { PermissionGuard } from 'component/common/PermissionGuard/PermissionGuard'; | ||
import { EventLog } from 'component/events/EventLog/EventLog'; | ||
import { READ_LOGS, ADMIN } from '@server/types/permissions'; | ||
|
||
export const EventPage = () => ( | ||
<PermissionGuard permissions={ADMIN}> | ||
<PermissionGuard permissions={[ADMIN, READ_LOGS]}> | ||
<EventLog title='Event log' /> | ||
</PermissionGuard> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import type { FromSchema } from 'json-schema-to-ts'; | ||
|
||
export const setCorsSchema = { | ||
$id: '#/components/schemas/setCorsSchema', | ||
type: 'object', | ||
additionalProperties: false, | ||
description: 'Unleash CORS configuration.', | ||
properties: { | ||
frontendApiOrigins: { | ||
description: | ||
'The list of origins that the front-end API should accept requests from.', | ||
example: ['*'], | ||
type: 'array', | ||
items: { type: 'string' }, | ||
}, | ||
}, | ||
components: {}, | ||
} as const; | ||
|
||
export type SetCorsSchema = FromSchema<typeof setCorsSchema>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters