Move backend files into a sub folder.

This commit is contained in:
Florian THIERRY
2024-03-27 10:28:22 +01:00
parent 39663e914d
commit 431d365d20
131 changed files with 3633 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
meta {
name: Login as admin user
type: http
seq: 2
}
post {
url: {{url}}/api/users/login
body: json
auth: none
}
body:json {
{
"id": "15a13dc7-029d-4eab-a63d-c1e96f90241d",
"password": "password"
}
}

View File

@@ -0,0 +1,18 @@
meta {
name: Login as standard user
type: http
seq: 1
}
post {
url: {{url}}/api/users/login
body: json
auth: none
}
body:json {
{
"email": "standard.user@codiki.org",
"password": "password"
}
}

View File

@@ -0,0 +1,11 @@
meta {
name: Sign in
type: http
seq: 3
}
post {
url: {{url}}/users
body: none
auth: none
}