Skip to content

Commit 969136a

Browse files
committed
Add 1.8.x support
1 parent d8b3a84 commit 969136a

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

docs/examples/java/databases/decrement-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.Databases;
55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>"); // Your secret API key
8+
.setSession(""); // The user session to authenticate with
99

1010
Databases databases = new Databases(client);
1111

docs/examples/java/databases/increment-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.Databases;
55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>"); // Your secret API key
8+
.setSession(""); // The user session to authenticate with
99

1010
Databases databases = new Databases(client);
1111

docs/examples/java/tablesdb/decrement-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.TablesDb;
55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>"); // Your secret API key
8+
.setSession(""); // The user session to authenticate with
99

1010
TablesDb tablesDb = new TablesDb(client);
1111

docs/examples/java/tablesdb/increment-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.TablesDb;
55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>"); // Your secret API key
8+
.setSession(""); // The user session to authenticate with
99

1010
TablesDb tablesDb = new TablesDb(client);
1111

docs/examples/kotlin/databases/decrement-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.Databases
55
val client = Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>") // Your secret API key
8+
.setSession("") // The user session to authenticate with
99

1010
val databases = Databases(client)
1111

docs/examples/kotlin/databases/increment-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.Databases
55
val client = Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>") // Your secret API key
8+
.setSession("") // The user session to authenticate with
99

1010
val databases = Databases(client)
1111

docs/examples/kotlin/tablesdb/decrement-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.TablesDb
55
val client = Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>") // Your secret API key
8+
.setSession("") // The user session to authenticate with
99

1010
val tablesDb = TablesDb(client)
1111

docs/examples/kotlin/tablesdb/increment-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.appwrite.services.TablesDb
55
val client = Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
77
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8-
.setKey("<YOUR_API_KEY>") // Your secret API key
8+
.setSession("") // The user session to authenticate with
99

1010
val tablesDb = TablesDb(client)
1111

0 commit comments

Comments
 (0)