iceshrimp/packages/backend/src/server/api/stream/channels/drive.ts

15 lines
347 B
TypeScript
Raw Normal View History

2023-01-13 13:40:33 +09:00
import Channel from "../channel.js";
export default class extends Channel {
2023-01-13 13:40:33 +09:00
public readonly chName = "drive";
2018-10-11 23:07:20 +09:00
public static shouldShare = true;
2018-11-11 02:22:34 +09:00
public static requireCredential = true;
public async init(params: any) {
// Subscribe drive stream
2023-01-13 13:40:33 +09:00
this.subscriber.on(`driveStream:${this.user!.id}`, (data) => {
this.send(data);
});
}
}