Add AUTH_EXPIRED action creator

pull/10616/head
Jared Scheib 2017-04-14 17:00:42 -07:00
parent bfc410b2fe
commit 3e36be1a1f
1 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,10 @@
export const authExpired = (auth) => ({
type: 'AUTH_EXPIRED',
payload: {
auth,
},
})
export const authRequested = () => ({
type: 'AUTH_REQUESTED',
})