Update bruno for Register, Resend, Notme, Verify

This commit is contained in:
Dita Aji Pratama 2025-02-09 18:17:59 +07:00
parent 4d741561a3
commit 39192b165b
4 changed files with 32 additions and 2 deletions

15
bruno/Auth/Notme.bru Normal file
View File

@ -0,0 +1,15 @@
meta {
name: Notme
type: http
seq: 3
}
get {
url: http://localhost:11000/api/auth/notme?token=xx.xx.xx
body: none
auth: none
}
params:query {
token: xx.xx.xx
}

View File

@ -5,7 +5,7 @@ meta {
}
post {
url: http://localhost:11000/api/auth/registration/register/su
url: http://localhost:11000/api/auth/register/su
body: json
auth: none
}

View File

@ -5,7 +5,7 @@ meta {
}
get {
url: http://localhost:11000/api/auth/registration/resend?email=user@domain.com
url: http://localhost:11000/api/auth/resend?email=user@domain.com
body: none
auth: none
}

15
bruno/Auth/Verify.bru Normal file
View File

@ -0,0 +1,15 @@
meta {
name: Verify
type: http
seq: 4
}
get {
url: http://localhost:11000/api/auth/verify?token=xx.xx.xx
body: none
auth: none
}
params:query {
token: xx.xx.xx
}