From 9ac4f89e36742d112e97001d54b4ea112630267d Mon Sep 17 00:00:00 2001 From: F4ilji Date: Sat, 11 Jul 2026 14:22:05 +0500 Subject: [PATCH] feat(jenkins): add dashboard:sync-permissions after migrations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ensures all dashboard permissions exist on every deploy. Command is idempotent — safe to run repeatedly. --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 117db11..567fb55 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,6 +61,7 @@ pipeline { steps { dir("${APP_DIR}") { sh 'docker exec ntspi-php php artisan migrate --force' + sh 'docker exec ntspi-php php artisan dashboard:sync-permissions' } } post {