diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-05 21:34:34 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-05 21:34:34 +0100 |
| commit | 88d092e21a4ea296ce804ef416683807df4b7d38 (patch) | |
| tree | 53e85f1e415cfc298f814d52029516c1a33de712 /animism-align/frontend/app/types.js | |
| parent | 0907418ce2c6ca498b02e8e514e4945d79750467 (diff) | |
change password. log in
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', [ ]) |
