mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
fix: review notes
This commit is contained in:
@@ -26,7 +26,7 @@ export class SessionService extends BaseService {
|
|||||||
|
|
||||||
const expiredLinkTokens = await this.oauthLinkTokenRepository.cleanup();
|
const expiredLinkTokens = await this.oauthLinkTokenRepository.cleanup();
|
||||||
if (expiredLinkTokens > 0) {
|
if (expiredLinkTokens > 0) {
|
||||||
this.logger.log(`Deleted ${expiredLinkTokens} expired OAuth link tokens`);
|
this.logger.debug(`Deleted ${expiredLinkTokens} expired OAuth link tokens`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return JobStatus.Success;
|
return JobStatus.Success;
|
||||||
|
|||||||
@@ -11,11 +11,11 @@
|
|||||||
import { t } from 'svelte-i18n';
|
import { t } from 'svelte-i18n';
|
||||||
import type { PageData } from './$types';
|
import type { PageData } from './$types';
|
||||||
|
|
||||||
interface Props {
|
type Props = {
|
||||||
data: PageData;
|
data: PageData;
|
||||||
}
|
};
|
||||||
|
|
||||||
let { data }: Props = $props();
|
const { data }: Props = $props();
|
||||||
|
|
||||||
let email = $state(data.email || authManager.user?.email || '');
|
let email = $state(data.email || authManager.user?.email || '');
|
||||||
let password = $state('');
|
let password = $state('');
|
||||||
|
|||||||
Reference in New Issue
Block a user