Files
mixtape/zero.Web/App/Resources/sections.js
T

10 lines
185 B
JavaScript
Raw Normal View History

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