appwrite 2.2.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. checksums.yaml +4 -4
  2. data/lib/appwrite/client.rb +134 -57
  3. data/lib/appwrite/exception.rb +5 -7
  4. data/lib/appwrite/file.rb +5 -13
  5. data/lib/appwrite/models/attribute_boolean.rb +52 -0
  6. data/lib/appwrite/models/attribute_email.rb +57 -0
  7. data/lib/appwrite/models/attribute_enum.rb +62 -0
  8. data/lib/appwrite/models/attribute_float.rb +62 -0
  9. data/lib/appwrite/models/attribute_integer.rb +62 -0
  10. data/lib/appwrite/models/attribute_ip.rb +57 -0
  11. data/lib/appwrite/models/attribute_list.rb +32 -0
  12. data/lib/appwrite/models/attribute_string.rb +57 -0
  13. data/lib/appwrite/models/attribute_url.rb +57 -0
  14. data/lib/appwrite/models/collection.rb +62 -0
  15. data/lib/appwrite/models/collection_list.rb +32 -0
  16. data/lib/appwrite/models/continent.rb +32 -0
  17. data/lib/appwrite/models/continent_list.rb +32 -0
  18. data/lib/appwrite/models/country.rb +32 -0
  19. data/lib/appwrite/models/country_list.rb +32 -0
  20. data/lib/appwrite/models/currency.rb +57 -0
  21. data/lib/appwrite/models/currency_list.rb +32 -0
  22. data/lib/appwrite/models/document.rb +50 -0
  23. data/lib/appwrite/models/document_list.rb +36 -0
  24. data/lib/appwrite/models/execution.rb +72 -0
  25. data/lib/appwrite/models/execution_list.rb +32 -0
  26. data/lib/appwrite/models/file.rb +62 -0
  27. data/lib/appwrite/models/file_list.rb +32 -0
  28. data/lib/appwrite/models/function.rb +92 -0
  29. data/lib/appwrite/models/function_list.rb +32 -0
  30. data/lib/appwrite/models/health_antivirus.rb +32 -0
  31. data/lib/appwrite/models/health_queue.rb +27 -0
  32. data/lib/appwrite/models/health_status.rb +32 -0
  33. data/lib/appwrite/models/health_time.rb +37 -0
  34. data/lib/appwrite/models/index.rb +47 -0
  35. data/lib/appwrite/models/index_list.rb +32 -0
  36. data/lib/appwrite/models/language.rb +37 -0
  37. data/lib/appwrite/models/language_list.rb +32 -0
  38. data/lib/appwrite/models/locale.rb +57 -0
  39. data/lib/appwrite/models/log.rb +127 -0
  40. data/lib/appwrite/models/log_list.rb +32 -0
  41. data/lib/appwrite/models/membership.rb +67 -0
  42. data/lib/appwrite/models/membership_list.rb +32 -0
  43. data/lib/appwrite/models/phone.rb +37 -0
  44. data/lib/appwrite/models/phone_list.rb +32 -0
  45. data/lib/appwrite/models/preferences.rb +30 -0
  46. data/lib/appwrite/models/runtime.rb +57 -0
  47. data/lib/appwrite/models/runtime_list.rb +32 -0
  48. data/lib/appwrite/models/session.rb +132 -0
  49. data/lib/appwrite/models/session_list.rb +32 -0
  50. data/lib/appwrite/models/tag.rb +47 -0
  51. data/lib/appwrite/models/tag_list.rb +32 -0
  52. data/lib/appwrite/models/team.rb +42 -0
  53. data/lib/appwrite/models/team_list.rb +32 -0
  54. data/lib/appwrite/models/token.rb +42 -0
  55. data/lib/appwrite/models/user.rb +62 -0
  56. data/lib/appwrite/models/user_list.rb +32 -0
  57. data/lib/appwrite/query.rb +42 -0
  58. data/lib/appwrite/service.rb +0 -5
  59. data/lib/appwrite/services/account.rb +380 -133
  60. data/lib/appwrite/services/avatars.rb +189 -125
  61. data/lib/appwrite/services/database.rb +876 -130
  62. data/lib/appwrite/services/functions.rb +366 -184
  63. data/lib/appwrite/services/health.rb +202 -58
  64. data/lib/appwrite/services/locale.rb +134 -32
  65. data/lib/appwrite/services/storage.rb +211 -118
  66. data/lib/appwrite/services/teams.rb +299 -118
  67. data/lib/appwrite/services/users.rb +372 -85
  68. data/lib/appwrite.rb +55 -0
  69. metadata +72 -103
  70. data/.travis.yml +0 -16
  71. data/CHANGELOG.md +0 -1
  72. data/Gemfile +0 -4
  73. data/LICENSE +0 -12
  74. data/README.md +0 -97
  75. data/appwrite.gemspec +0 -11
  76. data/docs/examples/account/create-recovery.md +0 -15
  77. data/docs/examples/account/create-verification.md +0 -15
  78. data/docs/examples/account/delete-session.md +0 -15
  79. data/docs/examples/account/delete-sessions.md +0 -15
  80. data/docs/examples/account/delete.md +0 -15
  81. data/docs/examples/account/get-logs.md +0 -15
  82. data/docs/examples/account/get-prefs.md +0 -15
  83. data/docs/examples/account/get-sessions.md +0 -15
  84. data/docs/examples/account/get.md +0 -15
  85. data/docs/examples/account/update-email.md +0 -15
  86. data/docs/examples/account/update-name.md +0 -15
  87. data/docs/examples/account/update-password.md +0 -15
  88. data/docs/examples/account/update-prefs.md +0 -15
  89. data/docs/examples/account/update-recovery.md +0 -15
  90. data/docs/examples/account/update-verification.md +0 -15
  91. data/docs/examples/avatars/get-browser.md +0 -15
  92. data/docs/examples/avatars/get-credit-card.md +0 -15
  93. data/docs/examples/avatars/get-favicon.md +0 -15
  94. data/docs/examples/avatars/get-flag.md +0 -15
  95. data/docs/examples/avatars/get-image.md +0 -15
  96. data/docs/examples/avatars/get-initials.md +0 -15
  97. data/docs/examples/avatars/get-q-r.md +0 -15
  98. data/docs/examples/database/create-collection.md +0 -15
  99. data/docs/examples/database/create-document.md +0 -15
  100. data/docs/examples/database/delete-collection.md +0 -15
  101. data/docs/examples/database/delete-document.md +0 -15
  102. data/docs/examples/database/get-collection.md +0 -15
  103. data/docs/examples/database/get-document.md +0 -15
  104. data/docs/examples/database/list-collections.md +0 -15
  105. data/docs/examples/database/list-documents.md +0 -15
  106. data/docs/examples/database/update-collection.md +0 -15
  107. data/docs/examples/database/update-document.md +0 -15
  108. data/docs/examples/functions/create-execution.md +0 -15
  109. data/docs/examples/functions/create-tag.md +0 -15
  110. data/docs/examples/functions/create.md +0 -15
  111. data/docs/examples/functions/delete-tag.md +0 -15
  112. data/docs/examples/functions/delete.md +0 -15
  113. data/docs/examples/functions/get-execution.md +0 -15
  114. data/docs/examples/functions/get-tag.md +0 -15
  115. data/docs/examples/functions/get.md +0 -15
  116. data/docs/examples/functions/list-executions.md +0 -15
  117. data/docs/examples/functions/list-tags.md +0 -15
  118. data/docs/examples/functions/list.md +0 -15
  119. data/docs/examples/functions/update-tag.md +0 -15
  120. data/docs/examples/functions/update.md +0 -15
  121. data/docs/examples/health/get-anti-virus.md +0 -15
  122. data/docs/examples/health/get-cache.md +0 -15
  123. data/docs/examples/health/get-d-b.md +0 -15
  124. data/docs/examples/health/get-queue-certificates.md +0 -15
  125. data/docs/examples/health/get-queue-functions.md +0 -15
  126. data/docs/examples/health/get-queue-logs.md +0 -15
  127. data/docs/examples/health/get-queue-tasks.md +0 -15
  128. data/docs/examples/health/get-queue-usage.md +0 -15
  129. data/docs/examples/health/get-queue-webhooks.md +0 -15
  130. data/docs/examples/health/get-storage-local.md +0 -15
  131. data/docs/examples/health/get-time.md +0 -15
  132. data/docs/examples/health/get.md +0 -15
  133. data/docs/examples/locale/get-continents.md +0 -15
  134. data/docs/examples/locale/get-countries-e-u.md +0 -15
  135. data/docs/examples/locale/get-countries-phones.md +0 -15
  136. data/docs/examples/locale/get-countries.md +0 -15
  137. data/docs/examples/locale/get-currencies.md +0 -15
  138. data/docs/examples/locale/get-languages.md +0 -15
  139. data/docs/examples/locale/get.md +0 -15
  140. data/docs/examples/storage/create-file.md +0 -15
  141. data/docs/examples/storage/delete-file.md +0 -15
  142. data/docs/examples/storage/get-file-download.md +0 -15
  143. data/docs/examples/storage/get-file-preview.md +0 -15
  144. data/docs/examples/storage/get-file-view.md +0 -15
  145. data/docs/examples/storage/get-file.md +0 -15
  146. data/docs/examples/storage/list-files.md +0 -15
  147. data/docs/examples/storage/update-file.md +0 -15
  148. data/docs/examples/teams/create-membership.md +0 -15
  149. data/docs/examples/teams/create.md +0 -15
  150. data/docs/examples/teams/delete-membership.md +0 -15
  151. data/docs/examples/teams/delete.md +0 -15
  152. data/docs/examples/teams/get-memberships.md +0 -15
  153. data/docs/examples/teams/get.md +0 -15
  154. data/docs/examples/teams/list.md +0 -15
  155. data/docs/examples/teams/update-membership-roles.md +0 -15
  156. data/docs/examples/teams/update-membership-status.md +0 -15
  157. data/docs/examples/teams/update.md +0 -15
  158. data/docs/examples/users/create.md +0 -15
  159. data/docs/examples/users/delete-session.md +0 -15
  160. data/docs/examples/users/delete-sessions.md +0 -15
  161. data/docs/examples/users/delete.md +0 -15
  162. data/docs/examples/users/get-logs.md +0 -15
  163. data/docs/examples/users/get-prefs.md +0 -15
  164. data/docs/examples/users/get-sessions.md +0 -15
  165. data/docs/examples/users/get.md +0 -15
  166. data/docs/examples/users/list.md +0 -15
  167. data/docs/examples/users/update-prefs.md +0 -15
  168. data/docs/examples/users/update-status.md +0 -15
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- locale = Appwrite::Locale.new(client);
12
-
13
- response = locale.get_countries_phones();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- locale = Appwrite::Locale.new(client);
12
-
13
- response = locale.get_countries();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- locale = Appwrite::Locale.new(client);
12
-
13
- response = locale.get_currencies();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- locale = Appwrite::Locale.new(client);
12
-
13
- response = locale.get_languages();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- locale = Appwrite::Locale.new(client);
12
-
13
- response = locale.get();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.create_file(file: Appwrite::File.new());
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.delete_file(file_id: '[FILE_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.get_file_download(file_id: '[FILE_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.get_file_preview(file_id: '[FILE_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.get_file_view(file_id: '[FILE_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.get_file(file_id: '[FILE_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.list_files();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- storage = Appwrite::Storage.new(client);
12
-
13
- response = storage.update_file(file_id: '[FILE_ID]', read: [], write: []);
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.create_membership(team_id: '[TEAM_ID]', email: 'email@example.com', roles: [], url: 'https://example.com');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.create(name: '[NAME]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.delete_membership(team_id: '[TEAM_ID]', membership_id: '[MEMBERSHIP_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.delete(team_id: '[TEAM_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.get_memberships(team_id: '[TEAM_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.get(team_id: '[TEAM_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.list();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.update_membership_roles(team_id: '[TEAM_ID]', membership_id: '[MEMBERSHIP_ID]', roles: []);
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.update_membership_status(team_id: '[TEAM_ID]', membership_id: '[MEMBERSHIP_ID]', user_id: '[USER_ID]', secret: '[SECRET]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- teams = Appwrite::Teams.new(client);
12
-
13
- response = teams.update(team_id: '[TEAM_ID]', name: '[NAME]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.create(email: 'email@example.com', password: 'password');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.delete_session(user_id: '[USER_ID]', session_id: '[SESSION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.delete_sessions(user_id: '[USER_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.delete(user_id: '[USER_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.get_logs(user_id: '[USER_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.get_prefs(user_id: '[USER_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.get_sessions(user_id: '[USER_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.get(user_id: '[USER_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.list();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.update_prefs(user_id: '[USER_ID]', prefs: {});
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- users = Appwrite::Users.new(client);
12
-
13
- response = users.update_status(user_id: '[USER_ID]', status: 1);
14
-
15
- puts response