fix code quality issues

This commit is contained in:
まっちゃとーにゅ
2024-01-23 06:16:10 +09:00
parent 8aa76868b3
commit d8d2188b4d
10 changed files with 12 additions and 34 deletions

View File

@@ -13,13 +13,6 @@ class ReversiChannel extends Channel {
public static requireCredential = true as const;
public static kind = 'read:account';
constructor(
id: string,
connection: Channel['connection'],
) {
super(id, connection);
}
@bindThis
public async init(params: any) {
this.subscriber.on(`reversiStream:${this.user!.id}`, this.send);
@@ -38,10 +31,6 @@ export class ReversiChannelService implements MiChannelService<true> {
public readonly requireCredential = ReversiChannel.requireCredential;
public readonly kind = ReversiChannel.kind;
constructor(
) {
}
@bindThis
public create(id: string, connection: Channel['connection']): ReversiChannel {
return new ReversiChannel(