| author | Alexandre Segura <mex.zktk@gmail.com> |
| Mon, 26 Jun 2017 16:43:22 +0200 | |
| changeset 90 | 990f2c928b15 |
| parent 89 | 06f609adfbf8 |
| child 93 | 469da13402e2 |
| permissions | -rw-r--r-- |
| 66 | 1 |
export const NOOP = 'NOOP'; |
2 |
||
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
3
diff
changeset
|
3 |
export const ADD_NOTE = 'ADD_NOTE'; |
|
79
772b73e31069
Introduce note editing, allow deleting note.
Alexandre Segura <mex.zktk@gmail.com>
parents:
72
diff
changeset
|
4 |
export const DELETE_NOTE = 'DELETE_NOTE'; |
|
80
b3a02ea6d097
Implement note edition.
Alexandre Segura <mex.zktk@gmail.com>
parents:
79
diff
changeset
|
5 |
export const UPDATE_NOTE = 'UPDATE_NOTE'; |
|
29
4cfeabef7d5e
Store data in PouchDB.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
6 |
|
|
4cfeabef7d5e
Store data in PouchDB.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
7 |
export const CREATE_SESSION = 'CREATE_SESSION'; |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
3
diff
changeset
|
8 |
export const UPDATE_SESSION = 'UPDATE_SESSION'; |
|
29
4cfeabef7d5e
Store data in PouchDB.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
9 |
export const LOAD_SESSIONS = 'LOAD_SESSIONS'; |
|
44
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
30
diff
changeset
|
10 |
|
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
30
diff
changeset
|
11 |
export const AUTH_LOGIN_SUBMIT = 'AUTH_LOGIN_SUBMIT'; |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
30
diff
changeset
|
12 |
export const AUTH_LOGIN_REQUEST = 'AUTH_LOGIN_REQUEST'; |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
30
diff
changeset
|
13 |
export const AUTH_LOGIN_ERROR = 'AUTH_LOGIN_ERROR'; |
|
89
06f609adfbf8
Add registration page.
Alexandre Segura <mex.zktk@gmail.com>
parents:
88
diff
changeset
|
14 |
|
|
06f609adfbf8
Add registration page.
Alexandre Segura <mex.zktk@gmail.com>
parents:
88
diff
changeset
|
15 |
export const AUTH_REGISTER_SUBMIT = 'AUTH_REGISTER_SUBMIT'; |
|
06f609adfbf8
Add registration page.
Alexandre Segura <mex.zktk@gmail.com>
parents:
88
diff
changeset
|
16 |
export const AUTH_REGISTER_REQUEST = 'AUTH_REGISTER_REQUEST'; |
|
06f609adfbf8
Add registration page.
Alexandre Segura <mex.zktk@gmail.com>
parents:
88
diff
changeset
|
17 |
export const AUTH_REGISTER_ERROR = 'AUTH_REGISTER_ERROR'; |
|
06f609adfbf8
Add registration page.
Alexandre Segura <mex.zktk@gmail.com>
parents:
88
diff
changeset
|
18 |
|
| 90 | 19 |
// Used both by login & register |
20 |
export const AUTH_LOGIN_SUCCESS = 'AUTH_LOGIN_SUCCESS'; |
|
21 |
||
| 47 | 22 |
export const AUTH_STORE_TOKEN_ASYNC = 'AUTH_STORE_TOKEN_ASYNC'; |
23 |
export const AUTH_STORE_TOKEN = 'AUTH_STORE_TOKEN'; |
|
| 52 | 24 |
export const AUTH_LOGOUT = 'AUTH_LOGOUT'; |
|
88
2a861fed6bde
Deauthenticate user if refresh was not possible (session expired or total delta reached)
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
25 |
export const AUTH_DEAUTHENTICATE = 'AUTH_DEAUTHENTICATE'; |
| 53 | 26 |
|
27 |
export const USER_UPDATE_SETTINGS_ASYNC = 'USER_UPDATE_SETTINGS_ASYNC'; |
|
28 |
export const USER_UPDATE_SETTINGS = 'USER_UPDATE_SETTINGS' |
|
|
72
7634b424f426
Add checkbox to add not on enter key.
Alexandre Segura <mex.zktk@gmail.com>
parents:
66
diff
changeset
|
29 |
export const USER_TOGGLE_AUTO_SUBMIT = 'USER_TOGGLE_AUTO_SUBMIT'; |
|
87
dbcee57de2c6
Add first implementation of network monitor
ymh <ymh.work@gmail.com>
parents:
80
diff
changeset
|
30 |
|
|
dbcee57de2c6
Add first implementation of network monitor
ymh <ymh.work@gmail.com>
parents:
80
diff
changeset
|
31 |
export const DATA_FETCH_SUCCESS = 'DATA_FETCH_SUCCESS'; |
|
dbcee57de2c6
Add first implementation of network monitor
ymh <ymh.work@gmail.com>
parents:
80
diff
changeset
|
32 |
export const OFFLINE_CONFIG_INITIALIZED ='OFFLINE_CONFIG_INITIALIZED'; |