15530: Link account page has link to home cluster
[arvados.git] / src / store / public-favorites / public-favorites-actions.ts
index ae6815b61e002325a36227fe903457e6ac30cad6..50b9070baf0987ab6ec64c4624cf301dee96d02d 100644 (file)
@@ -66,3 +66,9 @@ export const updatePublicFavorites = (resourceUuids: string[]) =>
                 dispatch(publicFavoritesActions.UPDATE_PUBLIC_FAVORITES(results));
             });
     };
+
+export const getIsAdmin = () =>
+    (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
+        const resource = getState().auth.user!.isAdmin;
+        return resource;
+    };