feat(user-sessions): add JWT-based session management and main menu route

This commit is contained in:
2025-10-29 10:31:49 +01:00
parent 306d5b309b
commit b6f0089d64
9 changed files with 138 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
meta {
name: Login
type: http
seq: 1
}
post {
url: {{host}}/login
body: formUrlEncoded
auth: inherit
}
body:form-urlencoded {
username: Janis
password: password123
}
body:multipart-form {
username: Janis
password: password123
}
settings {
encodeUrl: true
}

View File

@@ -0,0 +1,9 @@
{
"version": "1",
"name": "KnockOutWhist",
"type": "collection",
"ignore": [
"node_modules",
".git"
]
}

View File

@@ -0,0 +1,3 @@
vars {
host: http://localhost:9000
}