Bump version to 1.4.5

This commit is contained in:
2026-07-21 21:53:55 +01:00
parent 5e7df5e55c
commit 370ec81c33
7 changed files with 25 additions and 23 deletions
@@ -6,7 +6,7 @@ module.exports = function registerAdminScreenCommandRoutes(app, deps) {
const withClientNameReservation = deps.withClientNameReservation;
const requirePermission = deps.requirePermission;
app.post('/admin/screens/:slug/commands', requirePermission('screens.allow'), async function (req, res, next) {
app.post('/admin/clients/:slug/commands', requirePermission('clients.allow'), async function (req, res, next) {
try {
const slug = String(req.params.slug || '').trim();
const command = String((req.body && req.body.command) || req.query.command || '').trim().toLowerCase();