2020-04-05 13:05:39 +02:00
|
|
|
import Axios from 'axios';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
2020-04-06 00:26:31 +02:00
|
|
|
// get all sections
|
2020-04-05 13:05:39 +02:00
|
|
|
getAll()
|
|
|
|
|
{
|
|
|
|
|
return Axios.get(zero.path + 'api/sections/getAll').then(res => Promise.resolve(res.data));
|
|
|
|
|
}
|
|
|
|
|
};
|