12 lines
390 B
TypeScript
12 lines
390 B
TypeScript
|
import { fetchMeta } from "./fetch-meta.js";
|
||
|
import type { 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.findOneByOrFail({
|
||
|
id: meta.proxyAccountId,
|
||
|
})) as ILocalUser;
|
||
|
}
|