diff --git a/ui/src/shared/actions/auth.js b/ui/src/shared/actions/auth.js index ff543ac799..c5f7383bb8 100644 --- a/ui/src/shared/actions/auth.js +++ b/ui/src/shared/actions/auth.js @@ -1,3 +1,10 @@ +export const authExpired = (auth) => ({ + type: 'AUTH_EXPIRED', + payload: { + auth, + }, +}) + export const authRequested = () => ({ type: 'AUTH_REQUESTED', })