files.com 1.0.204 → 1.0.205

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0e82209172b911aa6a0684f772f5a90fcd0eead72b2615a0a5bbddcf638d70a
4
- data.tar.gz: 7ede5974d909d76411728fb000727c31868d2865f60bd6827b425b3a6ad9a08f
3
+ metadata.gz: f8464d4566cfa86c36e356bbca9c2d6e61ad7979e95c3ab156caed919e9d3f3e
4
+ data.tar.gz: e56f8d609526e24ec6c1c15e9fb25d8b185e3b6d305bc0e4f1acb33cc3362a08
5
5
  SHA512:
6
- metadata.gz: c4cefad86f8defb470be3f879609d1f20cd8defa24eb2318f657195e9b0a152e66e024c5ca06dcc93b1c78a417aba821ef038e128913e2b2440b9756b88e75b7
7
- data.tar.gz: d5a5b9599ffbe4e928b5c7c2f9c8f16fe12f28c62c8446e02e553f29697a66b7325442e4746c1454c531f628078016a346e95405b9a24c59f89814d4d01fe60d
6
+ metadata.gz: 0e5e2efe33c13efe80e1d5d287c1040bb0b892944c3b7390b09e347908d137b08d65ce13c64dcc5f0134ddb43c59492087e69d2a87e23fd40ced1b25a207ed37
7
+ data.tar.gz: f1bed388135f56850129c82d0922b323d03bcba01b96049395b4baccbe0240f4947532e319acb645ee49613a841a8691a4595278dcc58ff9bb05e9fb6bde23ba
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.204
1
+ 1.0.205
data/docs/user.md CHANGED
@@ -109,7 +109,7 @@
109
109
  * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
110
110
  * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
111
111
  * `group_id` (int64): Group ID to associate this user with.
112
- * `imported_password_hash` (string): Pre-calculated hash of the user's password.
112
+ * `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
113
113
  * `password` (string): User password.
114
114
  * `password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `password`.
115
115
  * `announcements_read` (boolean): Signifies that the user has read all the announcements in the UI.
@@ -214,7 +214,7 @@ Files::User.create(
214
214
  * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
215
215
  * `group_id` (int64): Group ID to associate this user with.
216
216
  * `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
217
- * `imported_password_hash` (string): Pre-calculated hash of the user's password.
217
+ * `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
218
218
  * `password` (string): User password.
219
219
  * `password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `password`.
220
220
  * `announcements_read` (boolean): Signifies that the user has read all the announcements in the UI.
@@ -346,7 +346,7 @@ Files::User.update(id,
346
346
  * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
347
347
  * `group_id` (int64): Group ID to associate this user with.
348
348
  * `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
349
- * `imported_password_hash` (string): Pre-calculated hash of the user's password.
349
+ * `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
350
350
  * `password` (string): User password.
351
351
  * `password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `password`.
352
352
  * `announcements_read` (boolean): Signifies that the user has read all the announcements in the UI.
@@ -499,7 +499,7 @@ user.update(
499
499
  * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
500
500
  * `group_id` (int64): Group ID to associate this user with.
501
501
  * `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
502
- * `imported_password_hash` (string): Pre-calculated hash of the user's password.
502
+ * `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
503
503
  * `password` (string): User password.
504
504
  * `password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `password`.
505
505
  * `announcements_read` (boolean): Signifies that the user has read all the announcements in the UI.
@@ -482,7 +482,7 @@ module Files
482
482
  @attributes[:group_id] = value
483
483
  end
484
484
 
485
- # string - Pre-calculated hash of the user's password.
485
+ # string - Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
486
486
  def imported_password_hash
487
487
  @attributes[:imported_password_hash]
488
488
  end
@@ -560,7 +560,7 @@ module Files
560
560
  # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
561
561
  # group_id - int64 - Group ID to associate this user with.
562
562
  # group_ids - string - A list of group ids to associate this user with. Comma delimited.
563
- # imported_password_hash - string - Pre-calculated hash of the user's password.
563
+ # imported_password_hash - string - Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
564
564
  # password - string - User password.
565
565
  # password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `password`.
566
566
  # announcements_read - boolean - Signifies that the user has read all the announcements in the UI.
@@ -720,7 +720,7 @@ module Files
720
720
  # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
721
721
  # group_id - int64 - Group ID to associate this user with.
722
722
  # group_ids - string - A list of group ids to associate this user with. Comma delimited.
723
- # imported_password_hash - string - Pre-calculated hash of the user's password.
723
+ # imported_password_hash - string - Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
724
724
  # password - string - User password.
725
725
  # password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `password`.
726
726
  # announcements_read - boolean - Signifies that the user has read all the announcements in the UI.
@@ -829,7 +829,7 @@ module Files
829
829
  # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
830
830
  # group_id - int64 - Group ID to associate this user with.
831
831
  # group_ids - string - A list of group ids to associate this user with. Comma delimited.
832
- # imported_password_hash - string - Pre-calculated hash of the user's password.
832
+ # imported_password_hash - string - Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
833
833
  # password - string - User password.
834
834
  # password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `password`.
835
835
  # announcements_read - boolean - Signifies that the user has read all the announcements in the UI.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.204
4
+ version: 1.0.205
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com