next conflicts
[arvados-workbench2.git] / src / store / workbench / workbench-actions.ts
index d33bdafb656e4a49065b8c9d631d0220d840e932..bc5eac6c8bcaa41ea74ea96ab4de5aeb8163837a 100644 (file)
@@ -61,6 +61,7 @@ import { loadKeepServicesPanel } from '~/store/keep-services/keep-services-actio
 import { loadUsersPanel, userBindedActions } from '~/store/users/users-actions';
 import { userPanelColumns } from '~/views/user-panel/user-panel';
 import { loadComputeNodesPanel } from '~/store/compute-nodes/compute-nodes-actions';
+import { loadApiClientAuthorizationsPanel } from '~/store/api-client-authorizations/api-client-authorizations-actions';
 
 export const WORKBENCH_LOADING_SCREEN = 'workbenchLoadingScreen';
 
@@ -439,6 +440,11 @@ export const loadComputeNodes = handleFirstTimeLoad(
         await dispatch(loadComputeNodesPanel());
     });
 
+export const loadApiClientAuthorizations = handleFirstTimeLoad(
+    async (dispatch: Dispatch<any>) => {
+        await dispatch(loadApiClientAuthorizationsPanel());
+    });
+
 const finishLoadingProject = (project: GroupContentsResource | string) =>
     async (dispatch: Dispatch<any>) => {
         const uuid = typeof project === 'string' ? project : project.uuid;