2020-07-06 08:54:22 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
type FeatureFlags struct {
|
|
|
|
// Datasync indicates whether direct messages should be sent exclusively
|
|
|
|
// using datasync, breaking change for non-v1 clients. Public messages
|
|
|
|
// are not impacted
|
|
|
|
Datasync bool
|
2020-07-27 15:20:16 +00:00
|
|
|
|
|
|
|
// PushNotification indicates whether we should be enabling the push notification feature
|
|
|
|
PushNotifications bool
|
2022-01-12 16:02:01 +00:00
|
|
|
|
|
|
|
// MailserverCycle indicates whether we should enable or not the mailserver cycle
|
|
|
|
MailserverCycle bool
|
2020-07-06 08:54:22 +00:00
|
|
|
}
|