Skip to content

Commit

Permalink
feat: Added isACLEditor prop to Redux state (#1201)
Browse files Browse the repository at this point in the history
resolves #1200
  • Loading branch information
bmingles authored Apr 4, 2023
1 parent e22e68d commit f39100a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/code-studio/src/main/AppInit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ function AppInit(props: AppInitProps) {
operateAs: name,
groups: [],
permissions: {
isACLEditor: false,
isSuperUser: false,
isQueryViewOnly: false,
isNonInteractive: false,
Expand Down
1 change: 1 addition & 0 deletions packages/redux/src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export interface DeephavenPluginModule {}
export type DeephavenPluginModuleMap = Map<string, DeephavenPluginModule>;

export interface UserPermissions {
isACLEditor: boolean;
isSuperUser: boolean;
isQueryViewOnly: boolean;
isNonInteractive: boolean;
Expand Down

0 comments on commit f39100a

Please sign in to comment.