mirror of https://github.com/authelia/authelia.git
22 lines
491 B
Go
22 lines
491 B
Go
package templates
|
|
|
|
const (
|
|
extText = ".txt"
|
|
extHTML = ".html"
|
|
)
|
|
|
|
// Template File Names.
|
|
const (
|
|
TemplateNameEmailIdentityVerificationJWT = "IdentityVerificationJWT"
|
|
TemplateNameEmailIdentityVerificationOTC = "IdentityVerificationOTC"
|
|
TemplateNameEmailEvent = "Event"
|
|
|
|
TemplateNameOIDCAuthorizeFormPost = "AuthorizeResponseFormPost.html"
|
|
)
|
|
|
|
// Template Category Names.
|
|
const (
|
|
TemplateCategoryNotifications = "notification"
|
|
TemplateCategoryOpenIDConnect = "oidc"
|
|
)
|