Skip to main content

junobuild_auth/state/
errors.rs

1// Error message indicating that a domain - derivation or external alternative origins - cannot be parsed to a valid URL.
2pub const JUNO_AUTH_ERROR_INVALID_ORIGIN: &str = "juno.auth.error.invalid_origin";
3// No authentication configuration found.
4pub const JUNO_AUTH_ERROR_NOT_CONFIGURED: &str = "juno.auth.error.not_configured";
5// No automation configuration found.
6pub const JUNO_AUTH_ERROR_AUTOMATION_NOT_CONFIGURED: &str =
7    "juno.auth.error.automation_not_configured";
8// Authentication with OpenId disabled.
9pub const JUNO_AUTH_ERROR_OPENID_DISABLED: &str = "juno.auth.error.openid_disabled";