diff --git a/CHANGES.md b/CHANGES.md index 8c6fe24dc6..ceae7aef56 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -39,7 +39,7 @@ - New OAuth adapter for PayPal sandbox (@armino-dev - [#420](https://github.com/appwrite/appwrite/issues/410)) - New OAuth adapter for Tradeshift (@armino-dev - [#855](https://github.com/appwrite/appwrite/pull/855)) - New OAuth adapter for Tradeshift sandbox (@armino-dev - [#855](https://github.com/appwrite/appwrite/pull/855)) -- Introducing new permssion types: role:guest, role:member, role:app +- Introducing new permssion types: role:guest & role:member - Disabled rate-limits on server side integrations - Refactored migration script diff --git a/app/config/platforms.php b/app/config/platforms.php index 09b1f4af9e..6c92c4f5f3 100644 --- a/app/config/platforms.php +++ b/app/config/platforms.php @@ -145,23 +145,6 @@ return [ 'enabled' => true, 'beta' => false, 'languages' => [ // TODO change key to 'sdks' - [ - 'key' => 'cli', - 'name' => 'Command Line', - 'version' => '0.3.0', - 'url' => 'https://github.com/appwrite/sdk-for-cli', - 'package' => 'https://github.com/appwrite/sdk-for-cli', - 'enabled' => true, - 'beta' => true, - 'dev' => false, - 'hidden' => true, - 'family' => APP_PLATFORM_SERVER, - 'prism' => 'bash', - 'source' => \realpath(__DIR__ . '/../sdks/server-cli'), - 'gitUrl' => 'git@github.com:appwrite/sdk-for-cli.git', - 'gitRepoName' => 'sdk-for-cli', - 'gitUserName' => 'appwrite', - ], [ 'key' => 'nodejs', 'name' => 'Node.js', @@ -315,6 +298,23 @@ return [ 'gitRepoName' => 'sdk-for-dart', 'gitUserName' => 'appwrite', ], + [ + 'key' => 'cli', + 'name' => 'Command Line', + 'version' => '0.3.0', + 'url' => 'https://github.com/appwrite/sdk-for-cli', + 'package' => 'https://github.com/appwrite/sdk-for-cli', + 'enabled' => true, + 'beta' => true, + 'dev' => false, + 'hidden' => true, + 'family' => APP_PLATFORM_SERVER, + 'prism' => 'bash', + 'source' => \realpath(__DIR__ . '/../sdks/server-cli'), + 'gitUrl' => 'git@github.com:appwrite/sdk-for-cli.git', + 'gitRepoName' => 'sdk-for-cli', + 'gitUserName' => 'appwrite', + ], ], ], ];