2023-01-13 05:40:33 +01:00
|
|
|
import { SwSubscriptions } from "@/models/index.js";
|
|
|
|
import define from "../../define.js";
|
2021-08-21 07:47:18 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["account"],
|
2021-08-21 07:47:18 +02:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2022-06-10 07:25:20 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
description: "Unregister from receiving push notifications.",
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2021-08-21 07:47:18 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
2022-02-19 06:05:32 +01:00
|
|
|
properties: {
|
2023-01-13 05:40:33 +01:00
|
|
|
endpoint: { type: "string" },
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
required: ["endpoint"],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-08-21 07:47:18 +02:00
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2021-08-21 07:47:18 +02:00
|
|
|
await SwSubscriptions.delete({
|
|
|
|
userId: user.id,
|
|
|
|
endpoint: ps.endpoint,
|
|
|
|
});
|
|
|
|
});
|