2024-06-29 09:10:39 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
getAllOrganizations() {
|
|
|
|
|
return axios.get('http://localhost:8080/organizations/listAll').then(response => {
|
|
|
|
|
return response.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addOrganization(organization) {
|
|
|
|
|
return axios.post('http://localhost:8080/organizations/addOrganization', organization).then(response => {
|
|
|
|
|
return response.data;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|