Updated Grid

This commit is contained in:
2026-04-08 09:15:01 -04:00
parent ca95582d92
commit a900e5e96a
45 changed files with 2731 additions and 429 deletions

View File

@@ -0,0 +1,11 @@
meta {
name: Track Status
type: http
seq: 4
}
get {
url: {{BASE_URL}}/audio/{{SERVER}}/status
body: none
auth: inherit
}

4
bruno/audio/folder.bru Normal file
View File

@@ -0,0 +1,4 @@
meta {
name: audio
seq: 2
}

View File

@@ -0,0 +1,15 @@
meta {
name: Authorize
type: http
seq: 1
}
get {
url: {{BASE_URL}}/auth/discord/authorize?redirect_uri=bruno://oauth/callback
body: none
auth: oauth2
}
params:query {
redirect_uri: bruno://oauth/callback
}

View File

@@ -0,0 +1,4 @@
meta {
name: discord
seq: 1
}

8
bruno/auth/folder.bru Normal file
View File

@@ -0,0 +1,8 @@
meta {
name: auth
seq: 4
}
auth {
mode: inherit
}

View File

@@ -0,0 +1,23 @@
meta {
name: Change Password
type: http
seq: 2
}
put {
url: {{BASE_URL}}/auth/password
body: json
auth: inherit
}
body:json {
{
"current_password": "test",
"new_password": "test"
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,16 @@
meta {
name: Get Self
type: http
seq: 3
}
get {
url: {{BASE_URL}}/auth/user
body: none
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,23 @@
meta {
name: Login
type: http
seq: 1
}
post {
url: {{BASE_URL}}/auth/login
body: json
auth: inherit
}
body:json {
{
"username": "admin",
"password": "test"
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,8 @@
meta {
name: local
seq: 2
}
auth {
mode: inherit
}

4
bruno/dice/folder.bru Normal file
View File

@@ -0,0 +1,4 @@
meta {
name: dice
seq: 3
}

View File

@@ -1,7 +1,8 @@
vars {
baseUrl: http://localhost:3000/api
BASE_URL: http://localhost:3000/api
}
vars:secret [
server,
apiKey
TEST_SERVER,
apiKey,
SERVER
]

View File

@@ -1,11 +0,0 @@
meta {
name: Authorize
type: http
seq: 1
}
get {
url: {{baseUrl}}/oauth/authorize
body: none
auth: inherit
}