From f8d3bd7da3b08916e36769dcbfe2a31bffe86776 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 30 Jun 2022 17:40:16 +0200 Subject: [PATCH 1/3] fix(ui): redirect after deleting collection --- app/views/console/databases/collection.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/console/databases/collection.phtml b/app/views/console/databases/collection.phtml index 024f9e05a1..2428e30661 100644 --- a/app/views/console/databases/collection.phtml +++ b/app/views/console/databases/collection.phtml @@ -613,7 +613,7 @@ $logs = $this->getParam('logs', null); data-success="alert,trigger,redirect" data-success-param-alert-text="Collection deleted successfully" data-success-param-trigger-events="databases.deleteCollection" - data-success-param-redirect-url="/console/database?project={{router.params.project}}" + data-success-param-redirect-url="/console/databases?project={{router.params.project}}" data-failure="alert" data-failure-param-alert-text="Failed to delete collection" data-failure-param-alert-classname="error"> From 5ae25463398e3d938b48d41dee77f106d0d25b13 Mon Sep 17 00:00:00 2001 From: haimantika mitra Date: Fri, 1 Jul 2022 13:55:54 +0530 Subject: [PATCH 2/3] Added realtime services to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4330489aaa..171203b29c 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,7 @@ Getting started with Appwrite is as easy as creating a new project, choosing you * [**Databases**](https://appwrite.io/docs/client/databases) - Manage databases, collections and documents. Read, create, update, and delete documents and filter lists of document collections using advanced filters. * [**Storage**](https://appwrite.io/docs/client/storage) - Manage storage files. Read, create, delete, and preview files. Manipulate the preview of your files to fit your app perfectly. All files are scanned by ClamAV and stored in a secure and encrypted way. * [**Functions**](https://appwrite.io/docs/server/functions) - Customize your Appwrite server by executing your custom code in a secure, isolated environment. You can trigger your code on any Appwrite system event, manually or using a CRON schedule. +* [**Realtime**](https://appwrite.io/docs/realtime) - Listen to real-time events for any of your Appwrite services including users, storage, functions, databases and more. * [**Locale**](https://appwrite.io/docs/client/locale) - Track your user's location, and manage your app locale-based data. * [**Avatars**](https://appwrite.io/docs/client/avatars) - Manage your users' avatars, countries' flags, browser icons, credit card symbols, and generate QR codes. From ab06570a500cadc0fe5a22cb8b7c98e9779e40ce Mon Sep 17 00:00:00 2001 From: Brandon Date: Fri, 1 Jul 2022 11:29:25 -0500 Subject: [PATCH 3/3] docs(storage): fix link to databases page --- docs/services/storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/services/storage.md b/docs/services/storage.md index 02f1ff430c..54df77891c 100644 --- a/docs/services/storage.md +++ b/docs/services/storage.md @@ -1,6 +1,6 @@ The Storage service allows you to manage your project files. Using the Storage service, you can upload, view, download, and query all your project files. -Files are managed using buckets. Storage buckets are similar to Collections we have in our [Database](/docs/database) service. The difference is, buckets also provide more power to decide what kinds of files, what sizes you want to allow in that bucket, whether or not to encrypt the files, scan with antivirus and more. +Files are managed using buckets. Storage buckets are similar to Collections we have in our [Databases](/docs/databases) service. The difference is, buckets also provide more power to decide what kinds of files, what sizes you want to allow in that bucket, whether or not to encrypt the files, scan with antivirus and more. Using Appwrite permissions architecture, you can assign read or write access to each bucket or file in your project for either a specific user, team, user role, or even grant it with public access (`role:all`). You can learn more about [how Appwrite handles permissions and access control](/docs/permissions).