Add api for mounts (#160)

* add application api endpoints for mounts

* run pint

* add mounts resource to api key

* add includes to mount transformer

* forgot delete route for mount itself

* add migration for "r_mounts" column

* add mounts to testcase api key
This commit is contained in:
Boy132
2024-05-19 17:50:15 +02:00
committed by GitHub
parent 0a5810358a
commit b1f99ca8a3
12 changed files with 374 additions and 1 deletions

View File

@@ -87,6 +87,7 @@ abstract class ApplicationApiIntegrationTestCase extends IntegrationTestCase
'r_eggs' => AdminAcl::READ | AdminAcl::WRITE,
'r_database_hosts' => AdminAcl::READ | AdminAcl::WRITE,
'r_server_databases' => AdminAcl::READ | AdminAcl::WRITE,
'r_mounts' => AdminAcl::READ | AdminAcl::WRITE,
], $permissions));
}