diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2024-02-28 09:49:34 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-28 09:49:34 +0900 |
| commit | 0d47877db1e1012aaba78a2926b165cf9e039d3d (patch) | |
| tree | e545cd513ee43ece2a7c6431f741982ef1ca169c /packages/backend/src/models/UserProfile.ts | |
| parent | Enhance: コンディショナルロールの条件に「マニュアルロ... (diff) | |
| download | sharkey-0d47877db1e1012aaba78a2926b165cf9e039d3d.tar.gz sharkey-0d47877db1e1012aaba78a2926b165cf9e039d3d.tar.bz2 sharkey-0d47877db1e1012aaba78a2926b165cf9e039d3d.zip | |
enhance(backend): フォロー・フォロワー関連の通知の受信設定の強化 (#13468)
* enhance(backend): 通知の受信設定に「フォロー中またはフォロワー」を追加
* fix(backend): 通知の受信設定で「相互フォロー」が正しく動作しない問題を修正
* Update CHANGELOG.md
Diffstat (limited to 'packages/backend/src/models/UserProfile.ts')
| -rw-r--r-- | packages/backend/src/models/UserProfile.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/models/UserProfile.ts b/packages/backend/src/models/UserProfile.ts index 1ca2f55850..7dbe0b3717 100644 --- a/packages/backend/src/models/UserProfile.ts +++ b/packages/backend/src/models/UserProfile.ts @@ -250,6 +250,8 @@ export class MiUserProfile { } | { type: 'mutualFollow'; } | { + type: 'followingOrFollower'; + } | { type: 'list'; userListId: MiUserList['id']; }; |