paricafe/src/models/repositories/auth-session.ts
syuilo b9cb6d1c10 refactor: refactoring imports
将来ESMに移行しやすいように
Related: #7658

なんかmochaが起動しなくなってるけど理由不明
すぐ直したい
2021-08-19 18:33:41 +09:00

21 lines
661 B
TypeScript

import { EntityRepository, Repository } from 'typeorm';
import { Apps } from '../index.js';
import { AuthSession } from '../entities/auth-session.js';
import { awaitAll } from '../../prelude/await-all.js';
import { User } from '../entities/user.js';
@EntityRepository(AuthSession)
export class AuthSessionRepository extends Repository<AuthSession> {
public async pack(
src: AuthSession['id'] | AuthSession,
me?: { id: User['id'] } | null | undefined
) {
const session = typeof src === 'object' ? src : await this.findOneOrFail(src);
return await awaitAll({
id: session.id,
app: Apps.pack(session.appId, me),
token: session.token
});
}
}