Implementation of sign out

Generally, we succeed to implement 'Sign in' by using Custom Auth. Then I wonder how to implement 'Sign out'? I cannot find the way to implement 'Sign out' in Retool.

Hey @jinho.yoo!

At the moment there isn't a particular utility for logging out, though you can try running the following script in a JavaScript query or script event handler which should give you the same functionality:

const retoolUrl = new URL(urlparams.href); 
utils.openUrl(`${retoolUrl.protocol}//${retoolUrl.host}/logout`, {newTab: false});

Let me know if that works?