1
0
Fork 0
mirror of synced 2024-06-26 10:10:57 +12:00

Fixed title case

This commit is contained in:
Matej Baco 2021-08-30 08:42:33 +02:00
parent 927ee843d4
commit 17effaff51
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
# Adding a New OAuth2 Provider 🛡
# Adding a new OAuth2 provider 🛡
This document is part of the Appwrite contributors' guide. Before you continue reading this document make sure you have read the [Code of Conduct](https://github.com/appwrite/appwrite/blob/master/CODE_OF_CONDUCT.md) and the [Contributing Guide](https://github.com/appwrite/appwrite/blob/master/CONTRIBUTING.md).
## Getting Started
## Getting started
OAuth2 providers help users to log in to the apps and websites without the need to provide passwords or any other type of credentials. Appwrite's goal is to have support from as many **major** OAuth2 providers as possible.
@ -156,7 +156,7 @@ class [PROVIDER NAME] extends OAuth2
Please mention in your documentation what resources or API docs you used to implement the provider's OAuth2 protocol.
## 3. Test Your Provider
## 3. Test your provider
After you finished adding your new provider to Appwrite, you should be able to see it in your Appwrite console. Navigate to 'Project > Users > Providers' and check your new provider's settings form.

View file

@ -2,7 +2,7 @@
This document is part of the Appwrite contributors' guide. Before you continue reading this document make sure you have read the [Code of Conduct](https://github.com/appwrite/appwrite/blob/master/CODE_OF_CONDUCT.md) and the [Contributing Guide](https://github.com/appwrite/appwrite/blob/master/CONTRIBUTING.md).
## Getting Started
## Getting started
Appwrite's Locale API, Email Templates ( and soon our Dashboard ) has support for returning responses in your own locale based on the value of the `X-Appwrite-Locale` header. Behind the scenes, we use the value of this header to find the correct translation file for the locale. This guide will walk you through the process of adding a new Locale to Appwrite.