1
0
forked from mirror/misskey
mi.moris.day/src/web/app/common/scripts/streaming/othello-game.ts
Akihiko Odaki 19b9cb105d Introduce account document to user document
An account document is attached to a user document if an account of the
user is on the server. It may be missing if the user is on a remote server.
2018-03-26 14:07:16 +09:00

12 lines
240 B
TypeScript

import Stream from './stream';
import MiOS from '../../mios';
export class OthelloGameStream extends Stream {
constructor(os: MiOS, me, game) {
super(os, 'othello-game', {
i: me ? me.account.token : null,
game: game.id
});
}
}