first commit
This commit is contained in:
commit
ea35958607
19 changed files with 285 additions and 0 deletions
1
README.md
Normal file
1
README.md
Normal file
|
@ -0,0 +1 @@
|
|||
# atums.world bruno_template
|
11
api/auth/email/request.bru
Normal file
11
api/auth/email/request.bru
Normal file
|
@ -0,0 +1,11 @@
|
|||
meta {
|
||||
name: request
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{base_url}}/api/auth/email/verify/request
|
||||
body: none
|
||||
auth: inherit
|
||||
}
|
15
api/auth/email/verify.bru
Normal file
15
api/auth/email/verify.bru
Normal file
|
@ -0,0 +1,15 @@
|
|||
meta {
|
||||
name: verify
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/auth/email/verify/:code
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
params:path {
|
||||
code: 0195979d-8cf0-7000-b178-58187510ac4e
|
||||
}
|
19
api/auth/login.bru
Executable file
19
api/auth/login.bru
Executable file
|
@ -0,0 +1,19 @@
|
|||
meta {
|
||||
name: login
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/auth/login
|
||||
body: json
|
||||
auth: none
|
||||
}
|
||||
|
||||
body:json {
|
||||
{
|
||||
"username": "creations",
|
||||
"email": "",
|
||||
"password": ""
|
||||
}
|
||||
}
|
11
api/auth/logout.bru
Executable file
11
api/auth/logout.bru
Executable file
|
@ -0,0 +1,11 @@
|
|||
meta {
|
||||
name: logout
|
||||
type: http
|
||||
seq: 3
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/auth/logout
|
||||
body: none
|
||||
auth: none
|
||||
}
|
21
api/auth/register.bru
Executable file
21
api/auth/register.bru
Executable file
|
@ -0,0 +1,21 @@
|
|||
meta {
|
||||
name: register
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/auth/register
|
||||
body: json
|
||||
auth: none
|
||||
}
|
||||
|
||||
body:json {
|
||||
{
|
||||
"username": "creations",
|
||||
"email": "",
|
||||
"password": "",
|
||||
"invite": "",
|
||||
"timezone": "America/New_York"
|
||||
}
|
||||
}
|
17
api/files/delete body.bru
Normal file
17
api/files/delete body.bru
Normal file
|
@ -0,0 +1,17 @@
|
|||
meta {
|
||||
name: delete body
|
||||
type: http
|
||||
seq: 3
|
||||
}
|
||||
|
||||
delete {
|
||||
url: {{base_url}}/api/files/delete
|
||||
body: json
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
body:json {
|
||||
{
|
||||
"files": "0195823a-5712-7000-801a-88bcf68e1c3d"
|
||||
}
|
||||
}
|
15
api/files/delete.bru
Normal file
15
api/files/delete.bru
Normal file
|
@ -0,0 +1,15 @@
|
|||
meta {
|
||||
name: delete
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
delete {
|
||||
url: {{base_url}}/api/files/delete/:id-or-name
|
||||
body: none
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
params:path {
|
||||
id-or-name: 0195823a-5712-7000-801a-88bcf68e1c3d
|
||||
}
|
19
api/files/upload.bru
Normal file
19
api/files/upload.bru
Normal file
|
@ -0,0 +1,19 @@
|
|||
meta {
|
||||
name: upload
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/files/upload
|
||||
body: multipartForm
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
headers {
|
||||
X-Clear-Exif: 1
|
||||
}
|
||||
|
||||
body:multipart-form {
|
||||
file: @file(/mnt/External Drive/Images/Pasted image.png)
|
||||
}
|
17
api/invite/create.bru
Executable file
17
api/invite/create.bru
Executable file
|
@ -0,0 +1,17 @@
|
|||
meta {
|
||||
name: create
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/invite/create
|
||||
body: json
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
body:json {
|
||||
{
|
||||
"expires": "1d1h"
|
||||
}
|
||||
}
|
15
api/invite/delete.bru
Executable file
15
api/invite/delete.bru
Executable file
|
@ -0,0 +1,15 @@
|
|||
meta {
|
||||
name: delete
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
delete {
|
||||
url: {{base_url}}/api/invite/delete/:invite
|
||||
body: none
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
params:path {
|
||||
invite: 26c50d68-8f5c-4074-af6d-029681cbffd1
|
||||
}
|
18
api/settings/set.bru
Executable file
18
api/settings/set.bru
Executable file
|
@ -0,0 +1,18 @@
|
|||
meta {
|
||||
name: set
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/settings/set
|
||||
body: json
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
body:json {
|
||||
{
|
||||
"key": "enable_thumbnails",
|
||||
"value": "true"
|
||||
}
|
||||
}
|
11
api/user/avatar/delete.bru
Normal file
11
api/user/avatar/delete.bru
Normal file
|
@ -0,0 +1,11 @@
|
|||
meta {
|
||||
name: delete
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
delete {
|
||||
url: {{base_url}}/api/user/avatar/delete
|
||||
body: none
|
||||
auth: inherit
|
||||
}
|
19
api/user/avatar/set.bru
Normal file
19
api/user/avatar/set.bru
Normal file
|
@ -0,0 +1,19 @@
|
|||
meta {
|
||||
name: set
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{base_url}}/api/user/avatar/set?user=73d2d5da-c0ba-4cd9-b906-8cd2cb82e2b2
|
||||
body: multipartForm
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
params:query {
|
||||
user: 73d2d5da-c0ba-4cd9-b906-8cd2cb82e2b2
|
||||
}
|
||||
|
||||
body:multipart-form {
|
||||
file: @file(/mnt/External Drive/Images/wot/7dc61f8b8bd6c5019f902d05d2ff8bb0-1844390142.png)
|
||||
}
|
16
api/user/files.bru
Normal file
16
api/user/files.bru
Normal file
|
@ -0,0 +1,16 @@
|
|||
meta {
|
||||
name: files
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{base_url}}/api/user/files?sort_by=size&sort_order=desc
|
||||
body: none
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
params:query {
|
||||
sort_by: size
|
||||
sort_order: desc
|
||||
}
|
19
api/user/info.bru
Normal file
19
api/user/info.bru
Normal file
|
@ -0,0 +1,19 @@
|
|||
meta {
|
||||
name: info
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{base_url}}/api/user/info/:id-or-name?invites=1
|
||||
body: none
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
params:query {
|
||||
invites: 1
|
||||
}
|
||||
|
||||
params:path {
|
||||
id-or-name: creations
|
||||
}
|
15
bruno.json
Executable file
15
bruno.json
Executable file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"version": "1",
|
||||
"name": "atums_world",
|
||||
"type": "collection",
|
||||
"ignore": [
|
||||
"node_modules",
|
||||
".git"
|
||||
],
|
||||
"size": 0,
|
||||
"filesCount": 0,
|
||||
"presets": {
|
||||
"requestType": "http",
|
||||
"requestUrl": "{{base_url}}"
|
||||
}
|
||||
}
|
11
collection.bru
Executable file
11
collection.bru
Executable file
|
@ -0,0 +1,11 @@
|
|||
auth {
|
||||
mode: bearer
|
||||
}
|
||||
|
||||
auth:bearer {
|
||||
token:
|
||||
}
|
||||
|
||||
vars:pre-request {
|
||||
base_url: http://0.0.0.0:9090
|
||||
}
|
15
raw.bru
Normal file
15
raw.bru
Normal file
|
@ -0,0 +1,15 @@
|
|||
meta {
|
||||
name: raw
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{base_url}}/file/:id-or-name
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
params:path {
|
||||
id-or-name: 019587e8-8262-7000-bbfc-8735b774eff5
|
||||
}
|
Loading…
Add table
Reference in a new issue