| author | Alexandre Segura <mex.zktk@gmail.com> |
| Mon, 19 Jun 2017 15:36:52 +0200 | |
| changeset 52 | 96f8a4a59bd9 |
| parent 44 | 3b20e2b584fe |
| child 89 | 06f609adfbf8 |
| permissions | -rw-r--r-- |
|
44
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
1 |
import * as types from '../constants/actionTypes'; |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
2 |
|
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
3 |
export const loginSubmit = (username, password) => { |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
4 |
return { |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
5 |
type: types.AUTH_LOGIN_SUBMIT, |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
6 |
username, |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
7 |
password |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
8 |
}; |
|
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
diff
changeset
|
9 |
} |
| 52 | 10 |
|
11 |
export const logout = () => { |
|
12 |
return { |
|
13 |
type: types.AUTH_LOGOUT |
|
14 |
}; |
|
15 |
} |