refactor(frontend): signinRequired -> ensureSignin

This commit is contained in:
syuilo
2025-03-16 19:04:14 +09:00
parent 22b0ace8b4
commit a773f2976d
26 changed files with 51 additions and 51 deletions

View File

@@ -28,13 +28,13 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { ref, computed, defineAsyncComponent } from 'vue';
import * as Misskey from 'misskey-js';
import { signinRequired } from '@/i.js';
import { ensureSignin } from '@/i.js';
import * as os from '@/os.js';
import { misskeyApi } from '@/utility/misskey-api.js';
import { i18n } from '@/i18n.js';
import { definePage } from '@/page.js';
const $i = signinRequired();
const $i = ensureSignin();
const avatarDecorations = ref<Misskey.entities.AdminAvatarDecorationsListResponse>([]);