2019-03-02 11:25:10 +01:00
|
|
|
import AbstractService from './abstractService'
|
|
|
|
import TeamNamespaceModel from '../models/teamNamespace'
|
|
|
|
import TeamModel from '../models/team'
|
2020-02-08 14:16:06 +01:00
|
|
|
import moment from 'moment'
|
2019-03-02 11:25:10 +01:00
|
|
|
|
|
|
|
export default class TeamNamespaceService extends AbstractService {
|
|
|
|
constructor() {
|
|
|
|
super({
|
|
|
|
create: '/namespaces/{namespaceID}/teams',
|
|
|
|
getAll: '/namespaces/{namespaceID}/teams',
|
|
|
|
update: '/namespaces/{namespaceID}/teams/{teamID}',
|
|
|
|
delete: '/namespaces/{namespaceID}/teams/{teamID}',
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-08 14:16:06 +01:00
|
|
|
processModel(model) {
|
|
|
|
model.created = moment(model.created).toISOString()
|
|
|
|
model.updated = moment(model.updated).toISOString()
|
|
|
|
return model
|
|
|
|
}
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
modelFactory(data) {
|
|
|
|
return new TeamNamespaceModel(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
modelGetAllFactory(data) {
|
|
|
|
return new TeamModel(data)
|
|
|
|
}
|
|
|
|
}
|