mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-02 03:26:58 +00:00
9 lines
369 B
TypeScript
9 lines
369 B
TypeScript
import { fetchMeta } from './fetch-meta.js';
|
|
import { ILocalUser } from '@/models/entities/user.js';
|
|
import { Users } from '@/models/index.js';
|
|
|
|
export async function fetchProxyAccount(): Promise<ILocalUser | null> {
|
|
const meta = await fetchMeta();
|
|
if (meta.proxyAccountId == null) return null;
|
|
return await Users.findOneOrFail(meta.proxyAccountId) as ILocalUser;
|
|
}
|