github.com/mad-app/mattermost-server@v5.11.1+incompatible/store/constants.go (about) 1 // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. 2 // See License.txt for license information. 3 4 package store 5 6 const ( 7 MISSING_CHANNEL_ERROR = "store.sql_channel.get_by_name.missing.app_error" 8 MISSING_CHANNEL_MEMBER_ERROR = "store.sql_channel.get_member.missing.app_error" 9 CHANNEL_EXISTS_ERROR = "store.sql_channel.save_channel.exists.app_error" 10 11 MISSING_ACCOUNT_ERROR = "store.sql_user.missing_account.const" 12 MISSING_AUTH_ACCOUNT_ERROR = "store.sql_user.get_by_auth.missing_account.app_error" 13 14 USER_SEARCH_OPTION_NAMES_ONLY = "names_only" 15 USER_SEARCH_OPTION_NAMES_ONLY_NO_FULL_NAME = "names_only_no_full_name" 16 USER_SEARCH_OPTION_ALL_NO_FULL_NAME = "all_no_full_name" 17 USER_SEARCH_OPTION_ALLOW_INACTIVE = "allow_inactive" 18 19 FEATURE_TOGGLE_PREFIX = "feature_enabled_" 20 )