mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-02 02:26:44 -06:00
b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
21 lines
661 B
TypeScript
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
|
|
});
|
|
}
|
|
}
|