This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/services/teamMember.js
kolaente e7c1c98c6a
All checks were successful
continuous-integration/drone/push Build is passing
Fix id params not being named correctly
2020-04-17 12:19:53 +02:00

28 lines
750 B
JavaScript

import AbstractService from './abstractService'
import TeamMemberModel from '../models/teamMember'
import {formatISO} from 'date-fns'
export default class TeamMemberService extends AbstractService {
constructor() {
super({
create: '/teams/{teamId}/members',
delete: '/teams/{teamId}/members/{id}', // "id" is the user id because we're intheriting from a normal user
});
}
processModel(model) {
model.created = formatISO(model.created)
model.updated = formatISO(model.updated)
return model
}
modelFactory(data) {
return new TeamMemberModel(data)
}
beforeCreate(model) {
model.userId = model.id // The api wants to get the user id as user_Id
model.admin = model.admin === null ? false : model.admin
return model
}
}