feat(forklifts): added backend forklift stuff and frontend companies

This commit is contained in:
2025-11-02 16:16:35 -06:00
parent a6cc17ccb1
commit 50cde2d8d2
52 changed files with 20619 additions and 32 deletions

View File

@@ -0,0 +1,22 @@
meta {
name: Get Companies
type: http
seq: 2
}
get {
url: {{url}}/lst/api/forklifts/companies
body: none
auth: inherit
}
body:json {
{
"name":"Delage DLL"
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,27 @@
meta {
name: Update Company
type: http
seq: 3
}
patch {
url: {{url}}/lst/api/forklifts/companies/:id
body: json
auth: inherit
}
params:path {
id: fbfba3df-8c0f-4994-adae-c03808cbccdc
}
body:json {
{
"name":"Delage DLL",
"active": true
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,22 @@
meta {
name: add company
type: http
seq: 1
}
post {
url: {{url}}/lst/api/forklifts/companies
body: json
auth: inherit
}
body:json {
{
"name":"Delage DLL"
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

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

View File

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