summaryrefslogtreecommitdiff
path: root/src/server/api/stream/channel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/stream/channel.ts')
-rw-r--r--src/server/api/stream/channel.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/server/api/stream/channel.ts b/src/server/api/stream/channel.ts
index bdbe4605cf..18fa651820 100644
--- a/src/server/api/stream/channel.ts
+++ b/src/server/api/stream/channel.ts
@@ -15,6 +15,14 @@ export default abstract class Channel {
return this.connection.user;
}
+ protected get following() {
+ return this.connection.following;
+ }
+
+ protected get muting() {
+ return this.connection.muting;
+ }
+
protected get subscriber() {
return this.connection.subscriber;
}