Fix login stuff?

This commit is contained in:
Owen Schwartz 2024-10-06 18:43:20 -04:00
parent 06eb1544f4
commit d144704066
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
11 changed files with 76 additions and 37 deletions

11
bruno/Auth/signup.bru Normal file
View file

@ -0,0 +1,11 @@
meta {
name: signup
type: http
seq: 2
}
get {
url:
body: none
auth: none
}

View file

@ -0,0 +1,18 @@
meta {
name: verify-email
type: http
seq: 3
}
put {
url: http://localhost:3000/api/v1/auth/signup
body: json
auth: none
}
body:json {
{
"email": "owen@fossorial.io",
"password": "Password123!"
}
}

11
bruno/Users/getUser.bru Normal file
View file

@ -0,0 +1,11 @@
meta {
name: getUser
type: http
seq: 1
}
get {
url:
body: none
auth: none
}