2022-04-03 12:24:51 +00:00
|
|
|
package templates
|
|
|
|
|
2022-12-23 05:06:49 +00:00
|
|
|
const (
|
|
|
|
extText = ".txt"
|
|
|
|
extHTML = ".html"
|
|
|
|
)
|
|
|
|
|
2022-04-03 12:24:51 +00:00
|
|
|
// Template File Names.
|
|
|
|
const (
|
2022-12-23 05:06:49 +00:00
|
|
|
TemplateNameEmailIdentityVerification = "IdentityVerification"
|
2022-12-27 08:59:08 +00:00
|
|
|
TemplateNameEmailEvent = "Event"
|
2023-01-07 20:04:06 +00:00
|
|
|
|
|
|
|
TemplateNameOIDCAuthorizeFormPost = "AuthorizeResponseFormPost.html"
|
2022-07-18 00:56:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Template Category Names.
|
|
|
|
const (
|
|
|
|
TemplateCategoryNotifications = "notification"
|
2023-01-07 20:04:06 +00:00
|
|
|
TemplateCategoryOpenIDConnect = "oidc"
|
2022-04-03 12:24:51 +00:00
|
|
|
)
|