Forked from
KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
57 commits behind the upstream repository.
-
Rafael László authoredRafael László authored
groups.js 307 B
import { GET_GROUPS } from './types';
import axios from './session';
export const getGroups = () => async (dispatch) => {
try {
const response = await axios.get('/api/v1/groups');
dispatch({
type: GET_GROUPS,
payload: response.data,
});
} catch (e) {
console.log(e);
}
};