frontend/src/services/subscription.js
konrad 3f20ae89a8 Subscriptions and notifications for namespaces, tasks and lists (#410)
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: vikunja/frontend#410
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-02-14 19:18:51 +00:00

15 lines
376 B
JavaScript

import AbstractService from '@/services/abstractService'
import SubscriptionModel from '@/models/subscription'
export default class SubscriptionService extends AbstractService {
constructor() {
super({
create: '/subscriptions/{entity}/{entityId}',
delete: '/subscriptions/{entity}/{entityId}',
})
}
modelFactory(data) {
return new SubscriptionModel(data)
}
}