diff --git a/bruno/Auth/Notme.bru b/bruno/Auth/Notme.bru new file mode 100644 index 0000000..9767bc5 --- /dev/null +++ b/bruno/Auth/Notme.bru @@ -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 +} diff --git a/bruno/Auth/Register.bru b/bruno/Auth/Register.bru index 6140226..d194263 100644 --- a/bruno/Auth/Register.bru +++ b/bruno/Auth/Register.bru @@ -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 } diff --git a/bruno/Auth/Resend.bru b/bruno/Auth/Resend.bru index 25c091b..7d1a30d 100644 --- a/bruno/Auth/Resend.bru +++ b/bruno/Auth/Resend.bru @@ -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 } diff --git a/bruno/Auth/Verify.bru b/bruno/Auth/Verify.bru new file mode 100644 index 0000000..e47f860 --- /dev/null +++ b/bruno/Auth/Verify.bru @@ -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 +}