diff options
| author | anatawa12 <anatawa12@icloud.com> | 2023-10-21 18:39:19 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-21 18:39:19 +0900 |
| commit | 722584bf72a1432dbaad8b868c9b44bb5cd7cd30 (patch) | |
| tree | 5b0a396bc1b6fe6befe762606c90c9f7e6f8770d /packages/backend/src/server/api/endpoints.ts | |
| parent | プロフィールのURL認証をrel=meで可能に (#12100) (diff) | |
| download | sharkey-722584bf72a1432dbaad8b868c9b44bb5cd7cd30.tar.gz sharkey-722584bf72a1432dbaad8b868c9b44bb5cd7cd30.tar.bz2 sharkey-722584bf72a1432dbaad8b868c9b44bb5cd7cd30.zip | |
すべてのフォロー中の人のwithRepliesを変える機能 (#12049)
* feat: endpoint to update all following
* feat(frontend): change show replies for all
* docs(changelog): すでにフォローしたすべての人の返信をTLに追加できるように
* fix: cancel not working
Diffstat (limited to 'packages/backend/src/server/api/endpoints.ts')
| -rw-r--r-- | packages/backend/src/server/api/endpoints.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/server/api/endpoints.ts b/packages/backend/src/server/api/endpoints.ts index 8d34edca9d..79e62672fa 100644 --- a/packages/backend/src/server/api/endpoints.ts +++ b/packages/backend/src/server/api/endpoints.ts @@ -165,6 +165,7 @@ import * as ep___federation_stats from './endpoints/federation/stats.js'; import * as ep___following_create from './endpoints/following/create.js'; import * as ep___following_delete from './endpoints/following/delete.js'; import * as ep___following_update from './endpoints/following/update.js'; +import * as ep___following_update_all from './endpoints/following/update-all.js'; import * as ep___following_invalidate from './endpoints/following/invalidate.js'; import * as ep___following_requests_accept from './endpoints/following/requests/accept.js'; import * as ep___following_requests_cancel from './endpoints/following/requests/cancel.js'; @@ -518,6 +519,7 @@ const eps = [ ['following/create', ep___following_create], ['following/delete', ep___following_delete], ['following/update', ep___following_update], + ['following/update-all', ep___following_update_all], ['following/invalidate', ep___following_invalidate], ['following/requests/accept', ep___following_requests_accept], ['following/requests/cancel', ep___following_requests_cancel], |