feat: Implement api sw/unregister (#7611)
* Implement api sw/unregister * remove all mode * add changelog Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
parent
802db92d98
commit
d2007add75
|
@ -14,6 +14,7 @@
|
||||||
- 絵文字オートコンプリートの挙動を改修
|
- 絵文字オートコンプリートの挙動を改修
|
||||||
- localStorageのaccountsはindexedDBで保持するように
|
- localStorageのaccountsはindexedDBで保持するように
|
||||||
- ActivityPub: ジョブキューの試行タイミングを調整 (#7635)
|
- ActivityPub: ジョブキューの試行タイミングを調整 (#7635)
|
||||||
|
- API: sw/unregisterを追加
|
||||||
- 依存関係の更新
|
- 依存関係の更新
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
import $ from 'cafy';
|
||||||
|
import define from '../../define';
|
||||||
|
import { SwSubscriptions } from '../../../../models';
|
||||||
|
|
||||||
|
export const meta = {
|
||||||
|
tags: ['account'],
|
||||||
|
|
||||||
|
requireCredential: true as const,
|
||||||
|
|
||||||
|
desc: {
|
||||||
|
'ja-JP': 'Push通知の登録を削除します。',
|
||||||
|
'en-US': 'Remove push noticfication registration'
|
||||||
|
},
|
||||||
|
|
||||||
|
params: {
|
||||||
|
endpoint: {
|
||||||
|
validator: $.str
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default define(meta, async (ps, user) => {
|
||||||
|
await SwSubscriptions.delete({
|
||||||
|
userId: user.id,
|
||||||
|
endpoint: ps.endpoint,
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue