Skip to content

Commit

Permalink
chore: rename config param
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jul 23, 2023
1 parent e2df775 commit 9457bf1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions util/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,14 @@ type ConfigType struct {
MaxParallelTasks int `json:"max_parallel_tasks"`

// feature switches
EmailAlert bool `json:"email_alert"`
EmailSecure bool `json:"email_secure"`
TelegramAlert bool `json:"telegram_alert"`
SlackAlert bool `json:"slack_alert"`
LdapEnable bool `json:"ldap_enable"`
LdapNeedTLS bool `json:"ldap_needtls"`
PasswordLoginDisabled bool `json:"password_login_disable"`
DemoMode bool `json:"demo_mode"`
EmailAlert bool `json:"email_alert"`
EmailSecure bool `json:"email_secure"`
TelegramAlert bool `json:"telegram_alert"`
SlackAlert bool `json:"slack_alert"`
LdapEnable bool `json:"ldap_enable"`
LdapNeedTLS bool `json:"ldap_needtls"`
PasswordLoginDisable bool `json:"password_login_disable"`
DemoMode bool `json:"demo_mode"`

GitClientId GitClientId `json:"git_client"`
}
Expand Down

0 comments on commit 9457bf1

Please sign in to comment.