mirror of
https://github.com/immich-app/immich.git
synced 2025-05-30 19:55:43 -04:00
22 lines
784 B
Svelte
22 lines
784 B
Svelte
<script lang="ts">
|
|
import { api, UserResponseDto } from '@api';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import ConfirmDialogue from '$lib/components/shared-components/confirm-dialogue.svelte';
|
|
|
|
export let user: UserResponseDto;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
const restoreUser = async () => {
|
|
const restoredUser = await api.userApi.restoreUser({ id: user.id });
|
|
if (restoredUser.data.deletedAt == null) dispatch('user-restore-success');
|
|
else dispatch('user-restore-fail');
|
|
};
|
|
</script>
|
|
|
|
<ConfirmDialogue title="Restore User" confirmText="Continue" confirmColor="green" on:confirm={restoreUser} on:cancel>
|
|
<svelte:fragment slot="prompt">
|
|
<p><b>{user.name}</b>'s account will be restored.</p>
|
|
</svelte:fragment>
|
|
</ConfirmDialogue>
|