github.com/vnforks/kid/v5@v5.22.1-0.20200408055009-b89d99c65676/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_CLASS_ERROR        = "store.sql_class.get_by_name.missing.app_error"
     8  	MISSING_CLASS_MEMBER_ERROR = "store.sql_class.get_member.missing.app_error"
     9  	CLASS_EXISTS_ERROR         = "store.sql_class.save_class.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  )