mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 16:32:20 +00:00
10 lines
247 B
JavaScript
10 lines
247 B
JavaScript
|
|
export default {
|
|
getLocationsByCompanyType(companyType) {
|
|
return {
|
|
method: 'get',
|
|
url: '/api/frontend/v1/organisation/LocationApi/getLocationsByCompanyType',
|
|
params: { companyType }
|
|
};
|
|
}
|
|
}; |