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/subscription.js
konrad 3f20ae89a8
All checks were successful
continuous-integration/drone/push Build is passing
Subscriptions and notifications for namespaces, tasks and lists (#410)
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #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)
}
}