chore(deps): update module github.com/coreos/go-oidc to v3 - autoclosed #17
@ -12,10 +12,13 @@
|
||||
|
||||
<script>
|
||||
import { goto } from '$app/navigation';
|
||||
import { page } from '$app/stores'
|
||||
|
||||
let auth = { username: "", password: "" };
|
||||
let pleaseWait = false;
|
||||
|
||||
export let next = $page.url.searchParams.get('next');
|
||||
|
||||
function logmein() {
|
||||
pleaseWait = true;
|
||||
fetch('api/auth', {
|
||||
@ -26,7 +29,11 @@
|
||||
response.json().then((auth) => {
|
||||
pleaseWait = false;
|
||||
$session = auth;
|
||||
if (next && next.indexOf('//') === -1) {
|
||||
goto(next)
|
||||
} else {
|
||||
goto(".");
|
||||
}
|
||||
})
|
||||
})
|
||||
.catch((response) => {
|
||||
|
Reference in New Issue
Block a user