1
0
Fork 0
mirror of synced 2024-10-03 19:53:33 +13:00

Merge pull request #5346 from appwrite/fix-console-service

fix: console server duplicate key
This commit is contained in:
Christy Jacob 2023-04-11 23:35:10 +04:00 committed by GitHub
commit 3b4b412733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

2
.gitmodules vendored
View file

@ -1,4 +1,4 @@
[submodule "app/console"] [submodule "app/console"]
path = app/console path = app/console
url = https://github.com/appwrite/console url = https://github.com/appwrite/console
branch = 2.3.0 branch = 2.3.1

View file

@ -1,9 +1,9 @@
<?php <?php
return [ return [
'/' => [ 'web/home' => [
'key' => 'homepage', 'key' => 'web/home',
'name' => 'Homepage', 'name' => 'Home',
'subtitle' => '', 'subtitle' => '',
'description' => '', 'description' => '',
'controller' => 'web/home.php', 'controller' => 'web/home.php',
@ -14,8 +14,8 @@ return [
'optional' => false, 'optional' => false,
'icon' => '', 'icon' => '',
], ],
'console' => [ 'web/console' => [
'key' => 'console', 'key' => 'web/console',
'name' => 'Console', 'name' => 'Console',
'subtitle' => '', 'subtitle' => '',
'description' => '', 'description' => '',

@ -1 +1 @@
Subproject commit ecefbf85ddfd05380b0cb665696b89786f4f2659 Subproject commit cfb6a45f27c13be8b9785c9a67c081ccb9cc9d31