mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
chore: enable coder inbox by default (#17077)
Add a flag to enable Coder Inbox by default, as well as supporting disabling the feature.
This commit is contained in:
Generated
+6
@@ -1313,6 +1313,7 @@ export interface NotificationsConfig {
|
||||
readonly dispatch_timeout: number;
|
||||
readonly email: NotificationsEmailConfig;
|
||||
readonly webhook: NotificationsWebhookConfig;
|
||||
readonly inbox: NotificationsInboxConfig;
|
||||
}
|
||||
|
||||
// From codersdk/deployment.go
|
||||
@@ -1343,6 +1344,11 @@ export interface NotificationsEmailTLSConfig {
|
||||
readonly key_file: string;
|
||||
}
|
||||
|
||||
// From codersdk/deployment.go
|
||||
export interface NotificationsInboxConfig {
|
||||
readonly enabled: boolean;
|
||||
}
|
||||
|
||||
// From codersdk/notifications.go
|
||||
export interface NotificationsSettings {
|
||||
readonly notifier_paused: boolean;
|
||||
|
||||
Reference in New Issue
Block a user