Skip to content

Commit

Permalink
2段階認証のバックアップコード一覧をテキストファイルでダウンロード可能に (#11957)
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberRex0 authored Oct 3, 2023
1 parent 0f6ee7d commit a511d8e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/frontend/src/pages/settings/2fa.qrdialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #value><code class="_monospace">{{ code }}</code></template>
</MkKeyValue>
</div>

<MkButton primary rounded gradate @click="downloadBackupCodes"><i class="ti ti-download"></i> {{ i18n.ts.download }}</MkButton>
</div>
</MkFolder>
</div>
Expand All @@ -108,6 +110,7 @@ import * as os from '@/os.js';
import MkFolder from '@/components/MkFolder.vue';
import MkInfo from '@/components/MkInfo.vue';
import { confetti } from '@/scripts/confetti.js';
import { $i } from '@/account.js';

defineProps<{
twoFactorData: {
Expand Down Expand Up @@ -143,6 +146,16 @@ async function tokenDone() {
});
}

function downloadBackupCodes() {
if (backupCodes.value !== undefined) {
const txtBlob = new Blob([backupCodes.value.join('\n')], { type: 'text/plain' });
const dummya = document.createElement('a');
dummya.href = URL.createObjectURL(txtBlob);
dummya.download = `${$i?.username}-2fa-backup-codes.txt`;
dummya.click();
}
}

function allDone() {
dialog.value.close();
}
Expand Down

0 comments on commit a511d8e

Please sign in to comment.