mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 17:03:09 +02:00
987168b863
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
20 lines
575 B
TypeScript
20 lines
575 B
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { Apps } from '..';
|
|
import rap from '@prezzemolo/rap';
|
|
import { AuthSession } from '../entities/auth-session';
|
|
import { ensure } from '../../prelude/ensure';
|
|
|
|
@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.findOne(src).then(ensure);
|
|
|
|
return await rap({
|
|
id: session.id,
|
|
app: Apps.pack(session.appId, me)
|
|
});
|
|
}
|
|
}
|