mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
704 B
17 lines
704 B
package featureflags |
|
|
|
var ( |
|
// EntEnabled enables experimental ent-based engine for the database storages. |
|
// https://entgo.io/ |
|
EntEnabled = newFlag("ent_enabled", false) |
|
|
|
// ExpandEnv can enable or disable env expansion in the config which can be useful in environments where, e.g., |
|
// $ sign is a part of the password for LDAP user. |
|
ExpandEnv = newFlag("expand_env", true) |
|
|
|
// APIConnectorsCRUD allows CRUD operations on connectors through the gRPC API |
|
APIConnectorsCRUD = newFlag("api_connectors_crud", false) |
|
|
|
// ContinueOnConnectorFailure allows the server to start even if some connectors fail to initialize. |
|
ContinueOnConnectorFailure = newFlag("continue_on_connector_failure", false) |
|
)
|
|
|