diff options
Diffstat (limited to 'internal/authentication/const.go')
| -rw-r--r-- | internal/authentication/const.go | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/internal/authentication/const.go b/internal/authentication/const.go index 48d31c186..4bf9e3cdb 100644 --- a/internal/authentication/const.go +++ b/internal/authentication/const.go @@ -70,9 +70,16 @@ const ( ) const ( - ldapPlaceholderInput = "{input}" - ldapPlaceholderDistinguishedName = "{dn}" - ldapPlaceholderUsername = "{username}" + ldapPlaceholderInput = "{input}" + ldapPlaceholderDistinguishedName = "{dn}" + ldapPlaceholderUsername = "{username}" + ldapPlaceholderDateTimeGeneralized = "{date-time:generalized}" + ldapPlaceholderDateTimeMicrosoftNTTimeEpoch = "{date-time:msft-nt-epoch}" + ldapPlaceholderDateTimeUnixEpoch = "{date-time:unix-epoch}" +) + +const ( + ldapGeneralizedTimeDateTimeFormat = "20060102150405.0Z" ) const ( |
