refactor(lst): register added in

This commit is contained in:
2025-02-21 15:26:56 -06:00
parent 9719451580
commit 026583815c
31 changed files with 529 additions and 385 deletions

View File

@@ -12,7 +12,7 @@ post {
body:json {
{
"username":"admin",
"username": "admin",
"password": "password123"
}
}

View File

@@ -0,0 +1,20 @@
meta {
name: Register
type: http
seq: 4
}
post {
url: http://localhost:3000/api/auth/register
body: json
auth: none
}
body:json {
{
"username":"matthes02",
"email": "blake@alpla.com",
"password": "Vsd!134"
}
}

View File

@@ -0,0 +1,18 @@
meta {
name: Api Hit
type: http
seq: 1
}
post {
url: http://localhost:3000/api/hits
body: json
auth: none
}
body:json {
{
"name": "something",
"arrayData": "{someghjdsfsd}"
}
}