-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(poster): Add other Hubble poster handlers
- Loading branch information
1 parent
cb31d95
commit 83e903a
Showing
4 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/modules/handlers/screen/poster/hubble/hubble-closed-poster-screen-handler.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import BasePosterScreenHandler from '../base-poster-screen-handler'; | ||
import { Namespace } from 'socket.io'; | ||
import { FeatureEnabled } from '../../../../server-settings'; | ||
|
||
@FeatureEnabled('HubblePosterScreenHandler') | ||
export default class HubbleClosedPosterScreenHandler extends BasePosterScreenHandler { | ||
constructor(socket: Namespace) { | ||
super(socket); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/modules/handlers/screen/poster/hubble/hubble-lastcall-poster-screen-handler.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import BasePosterScreenHandler from '../base-poster-screen-handler'; | ||
import { Namespace } from 'socket.io'; | ||
import { FeatureEnabled } from '../../../../server-settings'; | ||
|
||
@FeatureEnabled('HubblePosterScreenHandler') | ||
export default class HubbleLastcallPosterScreenHandler extends BasePosterScreenHandler { | ||
constructor(socket: Namespace) { | ||
super(socket); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters