cac8b09263
Prevent dropping a task onto a bucket which has its limit reached Fix closing the dropdown Add notice to show the limit Add input to change kanban bucket limit Add menu item to save bucket limit Fix parsing dates from the api Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/234
35 lines
No EOL
800 B
JavaScript
35 lines
No EOL
800 B
JavaScript
import AbstractService from './abstractService'
|
|
import NamespaceModel from '../models/namespace'
|
|
import {formatISO} from 'date-fns'
|
|
|
|
export default class NamespaceService extends AbstractService {
|
|
constructor() {
|
|
super({
|
|
create: '/namespaces',
|
|
get: '/namespaces/{id}',
|
|
getAll: '/namespaces',
|
|
update: '/namespaces/{id}',
|
|
delete: '/namespaces/{id}',
|
|
});
|
|
}
|
|
|
|
processModel(model) {
|
|
model.created = formatISO(new Date(model.created))
|
|
model.updated = formatISO(new Date(model.updated))
|
|
return model
|
|
}
|
|
|
|
modelFactory(data) {
|
|
return new NamespaceModel(data)
|
|
}
|
|
|
|
beforeUpdate(namespace) {
|
|
namespace.hexColor = namespace.hexColor.substring(1, 7)
|
|
return namespace
|
|
}
|
|
|
|
beforeCreate(namespace) {
|
|
namespace.hexColor = namespace.hexColor.substring(1, 7)
|
|
return namespace
|
|
}
|
|
} |