rename channels and set pubkey bridge key

This commit is contained in:
Jakub
2020-12-21 11:31:50 +01:00
committed by James Houlahan
parent e8cbbaa832
commit 7b84038bf4
9 changed files with 170 additions and 62 deletions

View File

@ -21,9 +21,9 @@ package updater
type UpdateChannel string
const (
// LiveChannel is the channel all users are subscribed to by default.
LiveChannel UpdateChannel = "live"
// StableChannel is the channel all users are subscribed to by default.
StableChannel UpdateChannel = "stable"
// BetaChannel is the channel users subscribe to when they enable "Early Access".
BetaChannel UpdateChannel = "beta"
// EarlyChannel is the channel users subscribe to when they enable "Early Access".
EarlyChannel UpdateChannel = "early"
)