mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-28 19:23:11 +01:00
26 lines
590 B
JavaScript
Vendored
26 lines
590 B
JavaScript
Vendored
import { httpClientFactory } from '@/services/httpClientFactory'
|
|
|
|
const apiClient = httpClientFactory('api')
|
|
|
|
export default {
|
|
/**
|
|
*
|
|
* @returns
|
|
*/
|
|
getAll() {
|
|
return apiClient.get('groups')
|
|
},
|
|
|
|
get(id, config = {}) {
|
|
return apiClient.get('/groups/' + id, { ...config })
|
|
},
|
|
|
|
assign(accountsIds, groupId, config = {}) {
|
|
return apiClient.post('/groups/' + groupId + '/assign', { ids: accountsIds }, { ...config })
|
|
},
|
|
|
|
delete(id, config = {}) {
|
|
return apiClient.delete('/groups/' + id, { ...config })
|
|
},
|
|
|
|
} |