feat(routes): add new route for sieve filters and update API routes for GET and PUT methods

This commit is contained in:
Ivan
2026-04-22 20:10:15 -05:00
parent 1e9f83cd61
commit 7ea2ad3604
2 changed files with 13 additions and 0 deletions

View File

@@ -234,6 +234,11 @@ const router = createRouter({
path: "/tools/paper-message",
component: defineAsyncComponent(() => import("./components/tools/PaperMessagePage.vue")),
},
{
name: "sieve-filters",
path: "/tools/sieve-filters",
component: defineAsyncComponent(() => import("./components/tools/SieveFiltersPage.vue")),
},
{
name: "rnode-flasher",
path: "/tools/rnode-flasher",

View File

@@ -408,6 +408,14 @@
"method": "PATCH",
"path": "/api/v1/lxmf/folders/{id}"
},
{
"method": "GET",
"path": "/api/v1/lxmf/sieve-filters"
},
{
"method": "PUT",
"path": "/api/v1/lxmf/sieve-filters"
},
{
"method": "POST",
"path": "/api/v1/lxmf/propagation-node/restart"