feat(frontend): sidebar migration started

This commit is contained in:
2025-09-23 20:54:28 -05:00
parent cb2e6252e0
commit bee436d341
57 changed files with 2608 additions and 359 deletions

View File

@@ -0,0 +1,23 @@
meta {
name: UpdateApp
type: http
seq: 3
}
get {
url: https://usmcd1vms036.alpla.net/lst/api/controller/update
body: none
auth: inherit
}
headers {
Content-Type: application/json
}
body:json {
{}
}
settings {
encodeUrl: true
}

View File

@@ -5,7 +5,7 @@ meta {
}
get {
url: http://{{url}}/lst/api/user/me
url: {{url}}/lst/api/user/me
body: none
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
post {
url: http://{{url}}/lst/api/admin/users
url: {{url}}/lst/api/admin/users
body: none
auth: inherit
}

View File

@@ -0,0 +1,22 @@
meta {
name: Get user Roles
type: http
seq: 9
}
get {
url: {{url}}/lst/api/user/roles
body: json
auth: inherit
}
body:json {
{
"module":"users",
"role":"admin"
}
}
settings {
encodeUrl: true
}

View File

@@ -5,7 +5,7 @@ meta {
}
post {
url: http://{{url}}/lst/api/admin/:userID/grant
url: {{url}}/lst/api/admin/:userID/grant
body: json
auth: inherit
}

View File

@@ -5,16 +5,16 @@ meta {
}
post {
url: http://{{url}}/lst/api/user/register
url: {{url}}/lst/api/user/register
body: json
auth: inherit
}
body:json {
{
"username":"matthes011",
"username":"matthes01",
"name":"blake",
"email":"blake1.matthes@alpla.com",
"email":"blake.matthes@alpla.com",
"password":"nova0511"
}
}

View File

@@ -5,7 +5,7 @@ meta {
}
get {
url: http://{{url}}/lst/api/auth/get-session
url: {{url}}/lst/api/auth/get-session
body: none
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
post {
url: http://{{url}}/lst/api/auth/sign-in/email
url: {{url}}/lst/api/auth/sign-in/email
body: json
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
post {
url: http://{{url}}/lst/api/auth/sign-in/username
url: {{url}}/lst/api/auth/sign-in/username
body: json
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
post {
url: http://{{url}}/lst/api/auth/sign-out
url: {{url}}/lst/api/auth/session
body: none
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
get {
url: http://{{url}}/lst/api/system/health
url: {{url}}/lst/api/system/health
body: none
auth: inherit
}

View File

@@ -1,4 +1,4 @@
vars {
url: localhost:4200
url: http://localhost:4200
session_cookie:
}