mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00: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:
16
coderd/apidoc/docs.go
generated
16
coderd/apidoc/docs.go
generated
@ -12658,6 +12658,14 @@ const docTemplate = `{
|
||||
"description": "How often to query the database for queued notifications.",
|
||||
"type": "integer"
|
||||
},
|
||||
"inbox": {
|
||||
"description": "Inbox settings.",
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/codersdk.NotificationsInboxConfig"
|
||||
}
|
||||
]
|
||||
},
|
||||
"lease_count": {
|
||||
"description": "How many notifications a notifier should lease per fetch interval.",
|
||||
"type": "integer"
|
||||
@ -12783,6 +12791,14 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"codersdk.NotificationsInboxConfig": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"codersdk.NotificationsSettings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
Reference in New Issue
Block a user