mattermost-mobile/app/screens/settings/notification_mention/index.tsx
2022-06-24 06:52:05 -04:00

21 lines
722 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {withDatabase} from '@nozbe/watermelondb/DatabaseProvider';
import withObservables from '@nozbe/with-observables';
import {observeIsCRTEnabled} from '@queries/servers/thread';
import {observeCurrentUser} from '@queries/servers/user';
import Mentions from './notification_mention';
import type {WithDatabaseArgs} from '@typings/database/database';
const enhanced = withObservables([], ({database}: WithDatabaseArgs) => {
return {
isCRTEnabled: observeIsCRTEnabled(database),
currentUser: observeCurrentUser(database),
};
});
export default withDatabase(enhanced(Mentions));