mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* fix type in constant name * fix lint Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
11 lines
278 B
Go
11 lines
278 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
const (
|
|
USER_AUTH_SERVICE_LDAP = "ldap"
|
|
LDAP_PUBLIC_CERTIFICATE_NAME = "ldap-public.crt"
|
|
LDAP_PRIVATE_KEY_NAME = "ldap-private.key"
|
|
)
|