2019-03-02 11:25:10 +01:00
|
|
|
import AbstractService from './abstractService'
|
|
|
|
import UserNamespaceModel from '../models/userNamespace'
|
|
|
|
import UserModel from '../models/user'
|
2020-03-02 21:55:22 +01:00
|
|
|
import {formatISO} from 'date-fns'
|
2019-03-02 11:25:10 +01:00
|
|
|
|
|
|
|
export default class UserNamespaceService extends AbstractService {
|
|
|
|
constructor() {
|
|
|
|
super({
|
2020-04-17 12:19:53 +02:00
|
|
|
create: '/namespaces/{namespaceId}/users',
|
|
|
|
getAll: '/namespaces/{namespaceId}/users',
|
|
|
|
update: '/namespaces/{namespaceId}/users/{userId}',
|
|
|
|
delete: '/namespaces/{namespaceId}/users/{userId}',
|
2019-03-02 11:25:10 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-08 14:16:06 +01:00
|
|
|
processModel(model) {
|
2020-03-02 21:55:22 +01:00
|
|
|
model.created = formatISO(model.created)
|
|
|
|
model.updated = formatISO(model.updated)
|
2020-02-08 14:16:06 +01:00
|
|
|
return model
|
|
|
|
}
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
modelFactory(data) {
|
|
|
|
return new UserNamespaceModel(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
modelGetAllFactory(data) {
|
|
|
|
return new UserModel(data)
|
|
|
|
}
|
|
|
|
}
|