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 (
|
2023-04-23 10:59:15 +00:00
|
|
|
TemplateNameEmailPasswordReset = "PasswordReset"
|
|
|
|
TemplateNameEmailEvent = "Event"
|
|
|
|
TemplateNameOneTimePassword = "OneTimePassword"
|
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
|
|
|
)
|