From 3730fb121982153ff623b7c8f661cf1cce3417b7 Mon Sep 17 00:00:00 2001 From: Isaiah Hamilton Date: Wed, 17 May 2023 16:35:27 -0400 Subject: [PATCH 1/2] rename azure to azure (mircosoft) --- .../Navigation/NavigationMenu/NavigationMenu.constants.ts | 2 +- apps/docs/data/authProviders.ts | 2 +- apps/docs/pages/guides/auth/social-login/auth-azure.mdx | 6 +++--- apps/docs/pages/guides/self-hosting.mdx | 2 +- apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts index bf1353c87fe..0af056281bb 100644 --- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts +++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts @@ -321,7 +321,7 @@ export const SocialLoginItems = [ url: '/guides/auth/social-login/auth-apple', }, { - name: 'Azure', + name: 'Azure (Microsoft)', icon: '/docs/img/icons/microsoft-icon', url: '/guides/auth/social-login/auth-azure', }, diff --git a/apps/docs/data/authProviders.ts b/apps/docs/data/authProviders.ts index ea5855061bd..a1053a30772 100644 --- a/apps/docs/data/authProviders.ts +++ b/apps/docs/data/authProviders.ts @@ -10,7 +10,7 @@ const authProviders = [ authType: 'social', }, { - name: 'Azure', + name: 'Azure (Microsoft)', logo: '/docs/img/icons/microsoft-icon', href: '/guides/auth/social-login/auth-azure', official: false, diff --git a/apps/docs/pages/guides/auth/social-login/auth-azure.mdx b/apps/docs/pages/guides/auth/social-login/auth-azure.mdx index d2ee9f865f7..bf2e2ed469f 100644 --- a/apps/docs/pages/guides/auth/social-login/auth-azure.mdx +++ b/apps/docs/pages/guides/auth/social-login/auth-azure.mdx @@ -2,11 +2,11 @@ import Layout from '~/layouts/DefaultGuideLayout' export const meta = { id: 'auth-azure', - title: 'Login with Azure', - description: 'Add Azure OAuth to your Supabase project', + title: 'Login with Azure (Microsoft)', + description: 'Add Azure (Microsoft) OAuth to your Supabase project', } -To enable Azure Auth for your project, you need to set up an Azure OAuth application and add the application credentials to your Supabase Dashboard. +To enable Azure (Microsoft) Auth for your project, you need to set up an Azure OAuth application and add the application credentials to your Supabase Dashboard. ## Overview diff --git a/apps/docs/pages/guides/self-hosting.mdx b/apps/docs/pages/guides/self-hosting.mdx index 39a57fb549e..fa4d6f0291a 100644 --- a/apps/docs/pages/guides/self-hosting.mdx +++ b/apps/docs/pages/guides/self-hosting.mdx @@ -134,7 +134,7 @@ secrets manager when deploying to production. Plain text files like dotenv lead Some suggested systems include: - [Doppler](https://www.doppler.com/) -- [Key Vault](https://docs.microsoft.com/en-us/azure/key-vault/general/overview) by Azure +- [Key Vault](https://docs.microsoft.com/en-us/azure/key-vault/general/overview) by Azure (Microsoft) - [Secrets Manager](https://aws.amazon.com/secrets-manager/) by AWS - [Secrets Manager](https://cloud.google.com/secret-manager) by GCP - [Vault](https://www.hashicorp.com/products/vault) by Hashicorp diff --git a/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx b/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx index c2b91673f74..8385a31ab77 100644 --- a/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx +++ b/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx @@ -24,7 +24,7 @@ How to add Google OAuth Logins to your Supabase Application. ### Logging in with external OAuth providers -Connecting social logins such as Google, GitHub, or Facebook couldn't be easier. In this guide we'll walk you through the process of connecting Google, but the process is basically the same for all of the providers which includes: azure, bitbucket, github, gitlab, facebook, and google. +Connecting social logins such as Google, GitHub, or Facebook couldn't be easier. In this guide we'll walk you through the process of connecting Google, but the process is basically the same for all of the providers which includes: azure (Microsoft), bitbucket, github, gitlab, facebook, and google. First you'll need to create a google project inside their [cloud console](https://console.cloud.google.com/home/dashboard), in other providers they may refer to this as an "app" and is usually available on the company's developer portal. From 5af0f29cb4a468d555809eb0902443705cd6649c Mon Sep 17 00:00:00 2001 From: Isaiah Hamilton Date: Thu, 18 May 2023 08:46:40 -0400 Subject: [PATCH 2/2] update provider name Co-authored-by: Joel Lee --- apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx b/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx index 8385a31ab77..c2b91673f74 100644 --- a/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx +++ b/apps/docs/pages/learn/auth-deep-dive/auth-google-oauth.mdx @@ -24,7 +24,7 @@ How to add Google OAuth Logins to your Supabase Application. ### Logging in with external OAuth providers -Connecting social logins such as Google, GitHub, or Facebook couldn't be easier. In this guide we'll walk you through the process of connecting Google, but the process is basically the same for all of the providers which includes: azure (Microsoft), bitbucket, github, gitlab, facebook, and google. +Connecting social logins such as Google, GitHub, or Facebook couldn't be easier. In this guide we'll walk you through the process of connecting Google, but the process is basically the same for all of the providers which includes: azure, bitbucket, github, gitlab, facebook, and google. First you'll need to create a google project inside their [cloud console](https://console.cloud.google.com/home/dashboard), in other providers they may refer to this as an "app" and is usually available on the company's developer portal.