Remove bruno collection - use Swagger

This commit is contained in:
Mike 2024-11-17 12:02:10 +00:00
parent 1c597e2115
commit 52f31a77aa
6 changed files with 0 additions and 93 deletions

View file

@ -1,26 +0,0 @@
meta {
name: Change Password
type: http
seq: 3
}
post {
url: {{Host}}/v1/auth/pwd
body: json
auth: bearer
}
headers {
:
}
auth:bearer {
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyLWlkIjoiYWQyZjI2MmUtOTVhMi00MDUzLTlmMjMtNmMxNjg5NWEwNGE3Iiwicm9sZSI6IlJvb3QiLCJuYmYiOjE3MzE3ODUyMTMsImV4cCI6MTczMTc4NTUxMywiaWF0IjoxNzMxNzg1MjEzLCJpc3MiOiJ5b3VyLWlzc3VlciIsImF1ZCI6InlvdXItYXVkaWVuY2UifQ.udVpVx3maT_Cn9WHkBOCukT_o1oGctqsXboYjL32I3Y
}
body:json {
{
"oldPassword": "{{Password}}",
"newPassword": "MyNewPassword123!"
}
}

View file

@ -1,23 +0,0 @@
meta {
name: Login
type: http
seq: 1
}
post {
url: {{Host}}/v1/auth/login
body: json
auth: none
}
body:json {
{
"username": "{{Username}}",
"password": "{{Password}}"
}
}
body:multipart-form {
username: {{Username}}
password: {{Password}}
}

View file

@ -1,17 +0,0 @@
meta {
name: Refresh
type: http
seq: 2
}
post {
url: {{Host}}/v1/auth/refresh
body: json
auth: none
}
body:json {
{
"refreshToken": "Y1oMF6M9tNjTa2aX01lkXffJo7CrKCqwJ7bOxsjjgEXozVEhUFvNq7KydSQY5rPY"
}
}

View file

@ -1,11 +0,0 @@
meta {
name: Me
type: http
seq: 1
}
get {
url: {{Host}}/v1/me
body: none
auth: bearer
}

View file

@ -1,9 +0,0 @@
{
"version": "1",
"name": "Galaeth",
"type": "collection",
"ignore": [
"node_modules",
".git"
]
}

View file

@ -1,7 +0,0 @@
vars {
Host: http://localhost:5000
}
vars:secret [
Username,
Password
]