fastcomments-react-native-sdk
Version:
React Native FastComments Components. Add live commenting to any React Native application.
17 lines (16 loc) • 546 B
JavaScript
// this should be safe to call multiple times for the same config object
export function mergeSimpleSSO(config) {
if (config.simpleSSO !== undefined) {
// have to check email since gets mapped to id
if (config.simpleSSO.email) {
config.sso = {
// @ts-ignore
simpleSSOUser: config.simpleSSO
};
}
else if (config.simpleSSO.loginURL || config.simpleSSO.loginCallback) {
// @ts-ignore
config.sso = config.simpleSSO;
}
}
}