refactor(modules): moved modules to app to control everything based on there active setting

This commit is contained in:
2025-10-29 21:57:11 -05:00
parent 6493e0398a
commit 99b2d762d6
35 changed files with 5807 additions and 121 deletions

View File

@@ -0,0 +1,16 @@
meta {
name: GetModules
type: http
seq: 3
}
get {
url: {{url}}/lst/api/system/modules
body: none
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,28 @@
meta {
name: Update Modules
type: http
seq: 2
}
patch {
url: {{url}}/lst/api/system/modules/update/:module
body: json
auth: inherit
}
params:path {
module: materialHelper
}
body:json {
{
"active": true,
"updateAll": true
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

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