From cba5b16494bdf7870dfbba35cce92ce1736bd7d2 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sat, 31 May 2025 19:28:31 +0100 Subject: [PATCH] Fix --- src/lib/profiles.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/profiles.ts b/src/lib/profiles.ts index d0915178a..019b5511f 100644 --- a/src/lib/profiles.ts +++ b/src/lib/profiles.ts @@ -16,6 +16,7 @@ type Profile = { githubLoginProvider?: string; hasGoogleLogin: boolean; hasAccountLogin: boolean; + hasAppwriteDocumentation: boolean; description: string; }; @@ -35,6 +36,7 @@ export const ConsoleCloudProfile: Profile = { githubLoginProvider: OAuthProvider.Github, hasGoogleLogin: false, hasAccountLogin: true, + hasAppwriteDocumentation: true, description: "Appwrite is an open-source platform for building applications at any scale, using your preferred programming languages and tools." }; @@ -53,6 +55,7 @@ export const ConsoleSelfhostedProfile: Profile = { hasGithubLogin: false, hasGoogleLogin: false, hasAccountLogin: true, + hasAppwriteDocumentation: true, description: "Appwrite is an open-source platform for building applications at any scale, using your preferred programming languages and tools." }; @@ -72,5 +75,6 @@ export const StudioProfile: Profile = { githubLoginProvider: 'github2', hasGoogleLogin: true, hasAccountLogin: true, + hasAppwriteDocumentation: false, description: "Imagine the fastest way to go from your imagination to scale. Batteries included." };