21 lines
412 B
Go
21 lines
412 B
Go
package templates
|
|
|
|
const (
|
|
extText = ".txt"
|
|
extHTML = ".html"
|
|
)
|
|
|
|
// Template File Names.
|
|
const (
|
|
TemplateNameEmailIdentityVerification = "IdentityVerification"
|
|
TemplateNameEmailEvent = "Event"
|
|
|
|
TemplateNameOIDCAuthorizeFormPost = "AuthorizeResponseFormPost.html"
|
|
)
|
|
|
|
// Template Category Names.
|
|
const (
|
|
TemplateCategoryNotifications = "notification"
|
|
TemplateCategoryOpenIDConnect = "oidc"
|
|
)
|