File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed
Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 201201 <p class =" aw-main-body-500 u-margin-block-start-4" >
202202 Anyone can join and help Appwrite become better.
203203 </p >
204- <button class =" aw-button is-secondary u-margin-block-start-32" >
204+ <a
205+ href =" https://github.com/appwrite/appwrite/issues"
206+ target =" _blank"
207+ rel =" noopener noreferrer"
208+ class =" aw-button is-secondary u-margin-block-start-32"
209+ >
205210 <span class =" aw-icon-github" aria-hidden =" true" />
206211 <span class =" " >View all Open Issues</span >
207- </button >
212+ </a >
208213 </div >
209214 <div class =" u-stretch" >
210215 <table class =" aw-table-line" >
Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ Only one instance of the `Client()` class should be created per app.
4545Add the following code to it, replacing `<YOUR_PROJECT_ID>` with your project ID.
4646
4747```js
48- import { Client } from "appwrite";
48+ import { Client, Databases, Account } from "appwrite";
4949
5050const client = new Client();
5151client
5252 .setEndpoint("https://cloud.appwrite.io/v1")
5353 .setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID
5454
5555export const account = new Account(client);
56- export const database = new Database (client);
56+ export const database = new Databases (client);
5757```
Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ Only one instance of the `Client()` class should be created per app.
4444Add the following code to it, replacing `<YOUR_PROJECT_ID>` with your project ID.
4545
4646```js
47- import { Client } from "appwrite";
47+ import { Client, Databases, Account } from "appwrite";
4848
4949const client = new Client();
5050client
5151 .setEndpoint("https://cloud.appwrite.io/v1")
5252 .setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID
5353
5454export const account = new Account(client);
55- export const database = new Database (client);
55+ export const database = new Databases (client);
5656```
Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ Only one instance of the `Client()` class should be created per app.
4444Add the following code to it, replacing `<YOUR_PROJECT_ID>` with your project ID.
4545
4646```js
47- import { Client } from "appwrite";
47+ import { Client, Databases, Account } from "appwrite";
4848
4949const client = new Client();
5050client
5151 .setEndpoint("https://cloud.appwrite.io/v1")
5252 .setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID
5353
5454export const account = new Account(client);
55- export const database = new Database (client);
55+ export const database = new Databases (client);
5656```
You can’t perform that action at this time.
0 commit comments