From 3e36be1a1ffa553a230283b901ae16fe18b2b12d Mon Sep 17 00:00:00 2001 From: Jared Scheib Date: Fri, 14 Apr 2017 17:00:42 -0700 Subject: [PATCH] Add AUTH_EXPIRED action creator --- ui/src/shared/actions/auth.js | 7 +++++++ 1 file changed, 7 insertions(+) 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', })