mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 07:43:09 +02:00
9 lines
356 B
TypeScript
9 lines
356 B
TypeScript
import { fetchMeta } from './fetch-meta';
|
|
import { ILocalUser } from '../models/entities/user';
|
|
import { Users } from '../models';
|
|
|
|
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;
|
|
}
|