mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 21:06:27 +01:00
20 lines
515 B
TypeScript
20 lines
515 B
TypeScript
|
import { EntityRepository, Repository } from 'typeorm';
|
||
|
import { Apps } from '..';
|
||
|
import rap from '@prezzemolo/rap';
|
||
|
import { AuthSession } from '../entities/auth-session';
|
||
|
|
||
|
@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);
|
||
|
|
||
|
return await rap({
|
||
|
id: session.id,
|
||
|
app: Apps.pack(session.appId, me)
|
||
|
});
|
||
|
}
|
||
|
}
|