fastcomments-react-native-sdk
Version:
React Native FastComments Components. Add live commenting to any React Native application.
8 lines (7 loc) • 508 B
JavaScript
// auth middleware needs to know what tenant and url id the request is for - so can't determine all params like pageTitle on reply.
export function getActionTenantId({ state, tenantId }) {
return state.config.tenantId.get() === 'all' && state.config.userId.get() && tenantId ? tenantId : state.config.tenantId.get();
}
export function getActionURLID({ state, urlId }) {
return state.config.tenantId.get() === 'all' && state.config.userId.get() && urlId && urlId ? urlId : state.config.urlId.get();
}