diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-03-22 13:03:42 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-03-22 13:03:42 +0100 |
| commit | 190c2cfee56345598feb6af3100e571ce4688925 (patch) | |
| tree | 9e6e2cec8fc301656131d321804e237c48fd8071 /scraper/client/actions.js | |
| parent | 73ac1f45da311681769feeb49be4e892576b9d19 (diff) | |
uses or not
Diffstat (limited to 'scraper/client/actions.js')
| -rw-r--r-- | scraper/client/actions.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scraper/client/actions.js b/scraper/client/actions.js index 6c4e16b2..734a8cbd 100644 --- a/scraper/client/actions.js +++ b/scraper/client/actions.js @@ -32,6 +32,10 @@ export const postAddress = data => dispatch => { api(dispatch, post, 'address', '/api/address/add', data) } +export const getVerifications = () => dispatch => ( + api(dispatch, get, 'verifications', '/api/verifications', {}) +) + export const getVerification = sha256 => dispatch => ( api(dispatch, get, 'verify', '/api/verify/' + sha256, {}) ) |
