From 23e532b2f21545facb4c3df482aa9fae5766e65b Mon Sep 17 00:00:00 2001 From: ExalayanMari <208263629+ExalayanMari@users.noreply.github.com> Date: Fri, 23 May 2025 23:22:31 -1000 Subject: [PATCH] Create WebAuthDNSSEC ] C U --- WebAuthDNSSEC | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 WebAuthDNSSEC diff --git a/WebAuthDNSSEC b/WebAuthDNSSEC new file mode 100644 index 0000000..d231371 --- /dev/null +++ b/WebAuthDNSSEC @@ -0,0 +1,13 @@ +private fun logout() { + WebAuthProvider.logout(account) + .withScheme("demo") + .start(this, object: Callback { + override fun onSuccess(payload: Void?) { + // The user has been logged out! + } + + override fun onFailure(error: AuthenticationException) { + // Something went wrong! + } + }) +}