mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
16 lines
482 B
JavaScript
16 lines
482 B
JavaScript
import api from '../api';
|
|
|
|
export const SUGGESTIONS_FETCH_REQUEST = 'SUGGESTIONS_FETCH_REQUEST';
|
|
export const SUGGESTIONS_FETCH_SUCCESS = 'SUGGESTIONS_FETCH_SUCCESS';
|
|
export const SUGGESTIONS_FETCH_FAIL = 'SUGGESTIONS_FETCH_FAIL';
|
|
|
|
export function fetchSuggestions() {
|
|
return (dispatch, getState) => {
|
|
api(getState).get('/api/v1/accounts/suggestions').then(response => {
|
|
console.log(response.data);
|
|
}).catch(error => {
|
|
console.error(error);
|
|
});
|
|
};
|
|
};
|