1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Make VCS, proxy and migrations services non-optional so they aren't toggled with enable/disable all service routes

This commit is contained in:
Jake Barnby 2023-11-06 12:04:56 +13:00
parent 19e5235491
commit 1429c82aa0
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -170,7 +170,7 @@ return [
'docs' => false,
'docsUrl' => '',
'tests' => false,
'optional' => true,
'optional' => false,
'icon' => '',
],
'functions' => [
@ -196,7 +196,7 @@ return [
'docs' => true,
'docsUrl' => 'https://appwrite.io/docs/proxy',
'tests' => false,
'optional' => true,
'optional' => false,
'icon' => '/images/services/proxy.png',
],
'mock' => [
@ -248,7 +248,7 @@ return [
'docs' => true,
'docsUrl' => 'https://appwrite.io/docs/migrations',
'tests' => true,
'optional' => true,
'optional' => false,
'icon' => '/images/services/migrations.png',
],
];