github.com/haalcala/mattermost-server-change-repo/v5@v5.33.2/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  	ChannelExistsError = "store.sql_channel.save_channel.exists.app_error"
     8  
     9  	UserSearchOptionNamesOnly           = "names_only"
    10  	UserSearchOptionNamesOnlyNoFullName = "names_only_no_full_name"
    11  	UserSearchOptionAllNoFullName       = "all_no_full_name"
    12  	UserSearchOptionAllowInactive       = "allow_inactive"
    13  
    14  	FeatureTogglePrefix = "feature_enabled_"
    15  )