This commit is contained in:
Paul Coral
2025-08-04 22:38:48 +02:00
parent 6050d9d3a3
commit 333fd824e3
41 changed files with 580 additions and 98 deletions

View File

@@ -0,0 +1,23 @@
meta {
name: Create user
type: http
seq: 2
}
post {
url: {{BASE_URL}}/users
body: json
auth: inherit
}
body:json {
{
"firstName": "Paul",
"lastName": "Test",
"email": "paul@coral.ch"
}
}
settings {
encodeUrl: true
}

View File

@@ -1,15 +0,0 @@
meta {
name: asdf
type: http
seq: 3
}
get {
url: localhost:5047
body: none
auth: inherit
}
settings {
encodeUrl: true
}

View File

@@ -1,15 +0,0 @@
meta {
name: hello
type: http
seq: 2
}
get {
url: {{BASE_URL}}/hello
body: none
auth: inherit
}
settings {
encodeUrl: true
}

View File

@@ -0,0 +1,8 @@
meta {
name: users
seq: 3
}
auth {
mode: inherit
}