Refactor to break out scheduler

This commit is contained in:
2025-10-23 20:23:03 -04:00
parent 84312d0b50
commit a9dc5ffdc1
66 changed files with 5796 additions and 705 deletions

View File

@@ -1,7 +1,7 @@
meta {
name: Change Password
type: http
seq: 6
seq: 7
}
put {

View File

@@ -1,7 +1,7 @@
meta {
name: Confirm Password Reset
type: http
seq: 8
seq: 9
}
post {

View File

@@ -1,7 +1,7 @@
meta {
name: Get Profile
type: http
seq: 10
seq: 11
}
get {

View File

@@ -0,0 +1,18 @@
meta {
name: Login Admin (Default)
type: http
seq: 5
}
post {
url: {{API_URL}}/account/login
body: json
auth: none
}
body:json {
{
"username": "admin",
"password": "changeme"
}
}

View File

@@ -1,7 +1,7 @@
meta {
name: Logout
type: http
seq: 5
seq: 6
}
post {

View File

@@ -1,7 +1,7 @@
meta {
name: Refresh Session
type: http
seq: 9
seq: 10
}
get {

View File

@@ -1,7 +1,7 @@
meta {
name: Reset Password
type: http
seq: 7
seq: 8
}
post {