many-microphone-43631
03/31/2023, 9:23 PMmagnificent-energy-493
many-microphone-43631
04/03/2023, 9:20 AMmany-microphone-43631
04/03/2023, 9:20 AMmany-microphone-43631
04/12/2023, 9:33 PMconst setFlowWithoutOidc = (baseFlow: SelfServiceRegistrationFlow | null) =>
setFlow(
produce(baseFlow, (flow) => {
if (flow) {
flow.ui.nodes = flow.ui.nodes.filter((node) => node.group !== 'oidc')
}
}),
)
There's still one problem. If you don't have an account then the sign in (via google) creates one for you which is in most cases good pattern. But in my case, I don't want that and in config, I only have the option to either enable or disable oidc. There's no option to disable for sign-up, can you help here?magnificent-energy-493
many-microphone-43631
04/13/2023, 9:39 PMusers should only be able to create an account through username/pw but not through OIDC?Correct I totally agree with you that this is not the best (even not good solution), but rather bad. At the same time our product allowed to signup via google and now the new business require is to disable google sign-up, but at the same time allow old users that sign-up via google to still use this as a login option. I haven't found anything like that in discussions and if there's nothing that comes to your mind, then I'll stick with what I posted because it's way less work than "hacking" with admin API, thanks one more time!
magnificent-energy-493