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// Authentication with OpenId disabled.
6pub const JUNO_AUTH_ERROR_OPENID_DISABLED: &str = "juno.auth.error.openid_disabled";