// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. const Constants = { POST_CHUNK_SIZE: 60, PROFILE_CHUNK_SIZE: 100, CHANNELS_CHUNK_SIZE: 50, TEAM_USER_ROLE: 'team_user', TEAM_ADMIN_ROLE: 'team_admin', CHANNEL_USER_ROLE: 'channel_user', CHANNEL_ADMIN_ROLE: 'channel_admin', POST_DELETED: 'DELETED' }; export default Constants;