diff options
author | curly <curly@infernal.garden> | 2024-07-17 14:45:51 -0600 |
---|---|---|
committer | curly <curly@infernal.garden> | 2024-07-17 14:45:51 -0600 |
commit | 87b71455a88941f0285985c0f0566c95d6a81b9f (patch) | |
tree | 5640e094df03250563ebf6628482a2a93d78e3f9 /src/main.js | |
parent | cc46857b4361c356e079b48d23a16b0fccaa7a61 (diff) | |
download | poko_web-87b71455a88941f0285985c0f0566c95d6a81b9f.tar.gz poko_web-87b71455a88941f0285985c0f0566c95d6a81b9f.tar.bz2 poko_web-87b71455a88941f0285985c0f0566c95d6a81b9f.zip |
if logged in; move to user page
Diffstat (limited to 'src/main.js')
-rw-r--r-- | src/main.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js index f970abc..6f5b02a 100644 --- a/src/main.js +++ b/src/main.js @@ -309,6 +309,20 @@ async function update_name_form() { } +window.onload = async function() { + // if not on a user page + if (window.location.pathname.indexOf("/user") == -1) { + console.log("NOT A USER PAGE") + // and if logged in + if (await is_logged_in()) { + // move to the user index page + window.location.href = host + "/user/" + } + } else if (window.location.pathname == "/user/") { + await user() + } +} + async function delete_form() { const id = get_id(); const session = get_session(); |