* Database init * Naming fix * naming misc * Fix test * Added Thread Tab columns, Team Threads Count table and other changes * Test case fix * Test cases fix ...... AGAIN * TS fix * Removed loaded_in_all_threads_tab, loaded_in_unreads_tab * Removed TeamThreadsCount table, mention & message root counts & added loadedInGlobalThreads flag * Type changes, added delete thread with post * Removed unused type * Reverted relationshio of post with thread * Calling thread destroyPermanently from post * Removed unused table name variables * added THREAD constant table in post model and fixed a few comments * Misc typo fix and code clean up * Added test case and related to participant in user model * test cases fix Co-authored-by: Mattermod <mattermod@users.noreply.github.com> Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
30 lines
1.7 KiB
TypeScript
30 lines
1.7 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export {default as CategorySchema} from './category';
|
|
export {default as CategoryChannelSchema} from './category_channel';
|
|
export {default as ChannelInfoSchema} from './channel_info';
|
|
export {default as ChannelMembershipSchema} from './channel_membership';
|
|
export {default as ChannelSchema} from './channel';
|
|
export {default as CustomEmojiSchema} from './custom_emoji';
|
|
export {default as DraftSchema} from './draft';
|
|
export {default as FileSchema} from './file';
|
|
export {default as MyChannelSchema} from './my_channel';
|
|
export {default as MyChannelSettingsSchema} from './my_channel_settings';
|
|
export {default as MyTeamSchema} from './my_team';
|
|
export {default as PostInThreadSchema} from './posts_in_thread';
|
|
export {default as PostSchema} from './post';
|
|
export {default as PostsInChannelSchema} from './posts_in_channel';
|
|
export {default as PreferenceSchema} from './preference';
|
|
export {default as ReactionSchema} from './reaction';
|
|
export {default as RoleSchema} from './role';
|
|
export {default as SlashCommandSchema} from './slash_command';
|
|
export {default as SystemSchema} from './system';
|
|
export {default as TeamChannelHistorySchema} from './team_channel_history';
|
|
export {default as TeamMembershipSchema} from './team_membership';
|
|
export {default as TeamSchema} from './team';
|
|
export {default as TeamSearchHistorySchema} from './team_search_history';
|
|
export {default as TermsOfServiceSchema} from './terms_of_service';
|
|
export {default as ThreadSchema} from './thread';
|
|
export {default as ThreadParticipantSchema} from './thread_participant';
|
|
export {default as UserSchema} from './user';
|