mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Passive UUID support
Co-authored-by: Scott Nonnenberg <scott@signal.org>
This commit is contained in:
committed by
Scott Nonnenberg
parent
f64ca0ed21
commit
a90246cbe5
@@ -17,6 +17,16 @@ export const getRegionCode = createSelector(
|
||||
(state: UserStateType): string => state.regionCode
|
||||
);
|
||||
|
||||
export const getUserConversationId = createSelector(
|
||||
getUser,
|
||||
(state: UserStateType): string => state.ourConversationId
|
||||
);
|
||||
|
||||
export const getUserUuid = createSelector(
|
||||
getUser,
|
||||
(state: UserStateType): string => state.ourUuid
|
||||
);
|
||||
|
||||
export const getIntl = createSelector(
|
||||
getUser,
|
||||
(state: UserStateType): LocalizerType => state.i18n
|
||||
|
||||
Reference in New Issue
Block a user