diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-07 18:04:32 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-07 18:04:32 +0900 |
| commit | a28c515ef63a6f9c188cf0a7f544db1afa8e1331 (patch) | |
| tree | 4b207f6998e0697ab5c732c04769b069dfd054c7 /src/types.ts | |
| parent | perf: delete-account処理を軽くする (#7958) (diff) | |
| download | misskey-a28c515ef63a6f9c188cf0a7f544db1afa8e1331.tar.gz misskey-a28c515ef63a6f9c188cf0a7f544db1afa8e1331.tar.bz2 misskey-a28c515ef63a6f9c188cf0a7f544db1afa8e1331.zip | |
feat: make possible to configure following/followers visibility (#7959)
* feat: make possible to configure following/followers visibility
* add test
* ap
* add ap test
* set Cache-Control
* hide following/followers count
Diffstat (limited to 'src/types.ts')
| -rw-r--r-- | src/types.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types.ts b/src/types.ts index d8eb442810..20f6f8bb88 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3,3 +3,5 @@ export const notificationTypes = ['follow', 'mention', 'reply', 'renote', 'quote export const noteVisibilities = ['public', 'home', 'followers', 'specified'] as const; export const mutedNoteReasons = ['word', 'manual', 'spam', 'other'] as const; + +export const ffVisibility = ['public', 'followers', 'private'] as const; |