mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
b77c9be36f
* bump prettier/eslint-plugin * bump nuxt pwa * use typed imports * set vue version to fix layout errors * disable import
28 lines
829 B
TypeScript
28 lines
829 B
TypeScript
import { BaseAPI, route } from "../base";
|
|
import type { NotifierCreate, NotifierOut, NotifierUpdate } from "../types/data-contracts";
|
|
|
|
export class NotifiersAPI extends BaseAPI {
|
|
getAll() {
|
|
return this.http.get<NotifierOut[]>({ url: route("/notifiers") });
|
|
}
|
|
|
|
create(body: NotifierCreate) {
|
|
return this.http.post<NotifierCreate, NotifierOut>({ url: route("/notifiers"), body });
|
|
}
|
|
|
|
update(id: string, body: NotifierUpdate) {
|
|
if (body.url === "") {
|
|
body.url = null;
|
|
}
|
|
|
|
return this.http.put<NotifierUpdate, NotifierOut>({ url: route(`/notifiers/${id}`), body });
|
|
}
|
|
|
|
delete(id: string) {
|
|
return this.http.delete<void>({ url: route(`/notifiers/${id}`) });
|
|
}
|
|
|
|
test(url: string) {
|
|
return this.http.post<{ url: string }, null>({ url: route(`/notifiers/test`), body: { url } });
|
|
}
|
|
}
|