1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00

feat: merge-commit

This commit is contained in:
Christy Jacob 2019-10-08 15:37:36 +05:30
parent 9d2f0d135a
commit deb793cb6a
11 changed files with 31 additions and 15 deletions

View file

@ -1,6 +1,6 @@
# Version 0.3.0 (PRE-RELEASE)
# Version 0.3.0 (PRE-RELEASE) - PLANNED
## Planned Issues
## Features
* Added 7 new locales for locale service and email templates (af, ar, cz, hu, lt, no, ru, si, sv, ta, vi, zh-cn, zh-tw)
* New users service routes to allow updates pref and name update
@ -11,6 +11,10 @@
* Allow electron apps to not pass origin header
* New OAuth adapters (Amazon, Dropbox, Microsoft, Slack, VK)
## Breaking Changs
* users/deleteUsersSession method name changed to users/deleteUserSession in all SDKs for better consistency
# Version 0.2.0 (PRE-RELEASE)
## Features

View file

@ -0,0 +1 @@
Delete user sessions by its unique ID.

View file

@ -0,0 +1 @@
Update user preferences by its unique ID. You can pass only the specific settings you wish to update.

View file

@ -1 +1,5 @@
The account service allow you to fetch and update information related to the currently logged in user. You can also retrieve a list of all the user sessions across different devices and a security log with the account recent activity.
The account service allows you to fetch and update information related to the currently logged-in user. You can use the service to retrieve a list of all the user sessions across different devices and a security log with the recent account activity.
Using the account service, you can also allow the logged-in user to update his account name, email, or passwords.
This service also exposes an endpoint to save and read [user preferences](/docs/account#updatePrefs) as a key-value object. This feature is handy if you want to allow extra customization in your app. Common usage for this feature may include saving the user preferred locale, timezone, or custom app theme. The usage of this feature is only limited only by your imagination.

View file

@ -1,3 +1,3 @@
The authentication service allows you to verify users accounts using basic email and password login or with a supported OAuth provider. The auth service also exposes methods to confirm users email account and recover users forgotten passwords.
The authentication service allows you to verify users' accounts using basic email and password login or with a supported OAuth provider. The auth service also exposes methods to confirm users' email account and recover users forgotten passwords.
You can review our currently available OAuth providers from your project console under the **'users'** menu.
You can review and enable our currently available OAuth providers from your project console under the **'users -> providers'** menu.

View file

@ -1 +1,5 @@
The avatars service aims to help you complete common and recitative tasks related to your app images, icons and avatars. Using this service we hope to save you some precious time and help you focus on solving your app real challenges.
The avatars service aims to help you complete everyday tasks related to your app images, icons, and avatars. Using this service, we hope to save you some precious time and help you focus on solving your real app challenges.
The Avatars service allows you to fetch countries' flags, browser icons, payment methods logos, websites favicons, generate QR codes, and manipulate remote images URLs.
All endpoints in this service allow you to resize, crop, and change the output image quality to best fit in your app both in terms of look and performance.

View file

@ -1,7 +1,5 @@
The database service allows you to create structured document collections, query and filter lists of documents and manage an advanced set of read and write access.
The database service allows you to create structured document collections, query and filter lists of documents, and manage an advanced set of read and write access.
All the data in the database service is stored in JSON format. The service also allows you to nest child documents and use advanced filters to search and query the database just like you would with a classic graph database.
By leveraging the database permission management you can assign read or write access to the database documents for a specific user, team, user role or even grant public access to all visitors of your project. You can learn more about [how Appwrite handles permissions and role access control](/docs/permissions).
By leveraging the database permission management, you can assign read or write access to the database documents for a specific user, team, user role, or even grant public access to all visitors to your project. You can learn more about [how Appwrite handles permissions and role access control](/docs/permissions).

View file

@ -1 +1,5 @@
The locale service allow you customize your app based on your user location. Get your user location, IP address, list of countries names, phone codes, currencies and more. This product includes GeoLite2 data created by MaxMind, available from [https://www.maxmind.com](https://www.maxmind.com).
The locale service allows you to customize your app based on your users' location. Using this service, you can get your users' location, IP address, list of countries and continents names, phone codes, currencies, and more.
The user service supports multiple locales. This feature allows you to fetch countries and continents information in your app language. To switch locales, all you need to do is pass the 'X-Appwrite-Locale' header or set the 'setLocale' method using any of our available SDKs. [View here the list of available locales](https://github.com/appwrite/appwrite/blob/master/app/init.php#L13).
This product includes GeoLite2 data created by MaxMind, available from [https://www.maxmind.com](https://www.maxmind.com).

View file

@ -2,4 +2,4 @@ The storage service allows you to manage your project files. You can upload, vie
Each file is granted read and write permissions to manage who has access to view or manage it. You can also learn more about how to manage your [resources permissions](/docs/permissions).
You can also use the storage file preview endpoint to show the app users preview images of your files. The preview endpoint also allows you to manipulate the resulting image, so it will fit perfectly inside your app.
You can also use the storage service file preview endpoint to show the app users' preview images of your files. The preview endpoint also allows you to manipulate the resulting image so that it will fit perfectly inside your app in terms of size and style.

View file

@ -1,3 +1,3 @@
The teams' service allows you to group together users of your project and allow them to share read and write access to your project resources, such as, database documents or storage files.
The teams' service allows you to group users of your project and will enable them to share read and write access to your project resources, such as database documents or storage files.
Each user who creates a team becomes the team owner and can delegate the ownership role by inviting a new team member. Only team owners can invite new users to the team.
Each user who creates a team becomes the team owner and can delegate the ownership role by inviting a new team member. Only team owners can invite new users to their team.

View file

@ -1 +1 @@
The users' service allows you to to manage your users in admin mode, you can search, block and view your users' current sessions and latest activity.
The users' service allows you to manage your users in admin mode (AKA server-side integration). Use this service to search, block, and view your Users info, current sessions, and latest activities. You can also use the Users service to edit your users' preferences and personal info.