1f7a81aae7
* update deps
* node16
* wip
* wip
* wip
* Update test-utils.ts
* wip
* Update tsconfig.json
* wip
* Update package.json
* wip
* Update following.vue
* Update followers.vue
* Update index.vue
* Update share.vue
* Update MkUserPopup.vue
* Update MkPostForm.vue
* wip
* Update MkTokenGenerateWindow.vue
* Update MkPagination.vue
* refactor
* update deps
* update deps
* Update sw.ts
* wip
* wip
* wip
* Update FetchInstanceMetadataService.ts
* Update FetchInstanceMetadataService.ts
* update node
* update deps
* 🎨
16 lines
456 B
TypeScript
16 lines
456 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
import { $i } from '@/account';
|
|
|
|
export function isFfVisibleForMe(user: Misskey.entities.UserDetailed): boolean {
|
|
if ($i && $i.id === user.id) return true;
|
|
|
|
if (user.ffVisibility === 'private') return false;
|
|
if (user.ffVisibility === 'followers' && !user.isFollowing) return false;
|
|
|
|
return true;
|
|
}
|