mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
feat: enable enterprise users to specify a custom logo (#5566)
* feat: enable enterprise users to specify a custom logo This adds a field in deployment settings that allows users to specify the URL to a custom logo that will display in the dashboard. This also groups service banner into a new appearance settings page. It adds a Fieldset component to allow for modular fields moving forward. * Fix tests
This commit is contained in:
@ -23,7 +23,7 @@ const (
|
||||
FeatureHighAvailability = "high_availability"
|
||||
FeatureMultipleGitAuth = "multiple_git_auth"
|
||||
FeatureExternalProvisionerDaemons = "external_provisioner_daemons"
|
||||
FeatureServiceBanners = "service_banners"
|
||||
FeatureAppearance = "appearance"
|
||||
)
|
||||
|
||||
var FeatureNames = []string{
|
||||
@ -35,7 +35,7 @@ var FeatureNames = []string{
|
||||
FeatureHighAvailability,
|
||||
FeatureMultipleGitAuth,
|
||||
FeatureExternalProvisionerDaemons,
|
||||
FeatureServiceBanners,
|
||||
FeatureAppearance,
|
||||
}
|
||||
|
||||
type Feature struct {
|
||||
|
Reference in New Issue
Block a user