X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4a055bfc98a5fc05cc311e2de1ab2213eec5497e..877a089738b525098e5e6e63179b6826408f9b5d:/src/store/workbench/workbench-actions.ts diff --git a/src/store/workbench/workbench-actions.ts b/src/store/workbench/workbench-actions.ts index d33bdafb..bc5eac6c 100644 --- a/src/store/workbench/workbench-actions.ts +++ b/src/store/workbench/workbench-actions.ts @@ -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) => { + await dispatch(loadApiClientAuthorizationsPanel()); + }); + const finishLoadingProject = (project: GroupContentsResource | string) => async (dispatch: Dispatch) => { const uuid = typeof project === 'string' ? project : project.uuid;