Initial commit

This commit is contained in:
Florian THIERRY
2025-11-14 14:17:55 +01:00
commit 56e178789f
68 changed files with 1776 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
meta {
name: Signup
type: http
seq: 1
}
post {
url: {{url}}/api/users
body: json
auth: none
}
body:json {
{
"pseudo": "Admin",
"email": "admin@admin.com",
"password": "P@ssword!"
}
}
script:post-response {
if (res.status === 200) {
bru.setEnvVar('userId', res.body.refreshToken.userId);
bru.setEnvVar('jwt', res.body.accessToken);
}
}