20 lines
568 B
TypeScript
20 lines
568 B
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { Apps } from '..';
|
|
import { AuthSession } from '../entities/auth-session';
|
|
import { awaitAll } from '../../prelude/await-all';
|
|
|
|
@EntityRepository(AuthSession)
|
|
export class AuthSessionRepository extends Repository<AuthSession> {
|
|
public async pack(
|
|
src: AuthSession['id'] | AuthSession,
|
|
me?: any
|
|
) {
|
|
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
|
|
});
|
|
}
|
|
}
|