diff options
Diffstat (limited to 'animism-align/frontend/app/types.js')
| -rw-r--r-- | animism-align/frontend/app/types.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/animism-align/frontend/app/types.js b/animism-align/frontend/app/types.js index 943527c..d4d701a 100644 --- a/animism-align/frontend/app/types.js +++ b/animism-align/frontend/app/types.js @@ -1,8 +1,6 @@ import { with_type, crud_type } from 'app/api/crud.types' export const api = crud_type('api', []) -export const auth = crud_type('auth', []) - export const upload = crud_type('upload', []) export const media = crud_type('media', []) export const peaks = crud_type('peaks', []) @@ -10,6 +8,7 @@ export const text = crud_type('text', []) export const annotation = crud_type('annotation', []) export const episode = crud_type('episode', []) export const venue = crud_type('venue', []) +export const user = crud_type('user', []) export const paragraph = crud_type('paragraph', [ 'update_transcript', ]) @@ -37,6 +36,10 @@ export const viewer = with_type('viewer', [ 'open_footnote', ]) +export const auth = with_type('auth', [ + 'logged_in', 'logged_out', +]) + export const site = with_type('site', [ ]) |
