Story view receipts setting

This commit is contained in:
Fedor Indutny 2022-10-25 15:18:42 -07:00 committed by GitHub
parent ad42d98774
commit 3702a67975
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 161 additions and 35 deletions

View file

@ -177,3 +177,11 @@ export const getHasReadReceiptSetting = createSelector(
getItems,
(state: ItemsStateType): boolean => Boolean(state['read-receipt-setting'])
);
export const getHasStoryViewReceiptSetting = createSelector(
getItems,
(state: ItemsStateType): boolean =>
Boolean(
state.storyViewReceiptsEnabled ?? state['read-receipt-setting'] ?? false
)
);