Skip to content

Commit 160ff20

Browse files
committed
Added isACLEditor prop to Redux state
#1200
1 parent e22e68d commit 160ff20

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

packages/code-studio/src/main/AppInit.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ function AppInit(props: AppInitProps) {
248248
operateAs: name,
249249
groups: [],
250250
permissions: {
251+
isACLEditor: false,
251252
isSuperUser: false,
252253
isQueryViewOnly: false,
253254
isNonInteractive: false,

packages/redux/src/store.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export interface DeephavenPluginModule {}
1414
export type DeephavenPluginModuleMap = Map<string, DeephavenPluginModule>;
1515

1616
export interface UserPermissions {
17+
isACLEditor: boolean;
1718
isSuperUser: boolean;
1819
isQueryViewOnly: boolean;
1920
isNonInteractive: boolean;

0 commit comments

Comments
 (0)