feat(v5): authorize creates, deep-link selection, list apps in v4

Restrict V5 application and resource-connection creation to team admins.
Resolve project, environment, and application from query params and keep
session selection in sync. Surface V5 apps on the v4 resource index and
count them for project/environment emptiness. Create the flux data dir
on install and upgrade.
This commit is contained in:
Andras Bacsai
2026-07-18 15:55:47 +02:00
parent 772093928f
commit a4ab69df56
23 changed files with 299 additions and 38 deletions
+13
View File
@@ -56,6 +56,19 @@ it('generates a dedicated flux laravel api token during install and upgrade', fu
'nightly upgrade' => 'other/nightly/upgrade.sh',
]);
it('creates a writable flux storage directory during install and upgrade', function (string $path) {
$script = file_get_contents(getcwd().'/'.$path);
expect($script)
->toContain('/data/coolify/flux')
->toContain('chown -R 9999:root /data/coolify/flux');
})->with([
'stable install' => 'scripts/install.sh',
'nightly install' => 'other/nightly/install.sh',
'stable upgrade' => 'scripts/upgrade.sh',
'nightly upgrade' => 'other/nightly/upgrade.sh',
]);
it('uses the selected registry url when extracting upgrade images', function (string $path) {
$script = file_get_contents(getcwd().'/'.$path);