files.com 1.0.336 → 1.0.337

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: 4f997cb7fcd5a28ab943a960c3a619fbf989715bf77194421878a92ec386ba3e
4
- data.tar.gz: 1947790335988b1ce0f61844a89d4c0fd6b03dfea163af29737a2101d1b927ce
3
+ metadata.gz: 0524a69b766300097eded01d8a73553b87fac692e4bbe3a00e4cbca77d866b33
4
+ data.tar.gz: db809958827706751dd1ccef70335723a812e9a2dd301ce326dd6da1932e9df6
5
5
  SHA512:
6
- metadata.gz: 58d9c41d02ef5162820a8d22046ea0f7b0ad12246e70c656711bba03693321a7d0b666cc1f91fbe1a677bf60a1deac8613374c748768960033ca838c734ed55a
7
- data.tar.gz: 80668b0ba95a5edc4142303b8152154e5b588a7f0d78e3df8c0f1d205df7dbf31d6e9ef49c9fd70a724994f4111f04eb28c86a6a4e33bb181b83277d085cdb68
6
+ metadata.gz: 7ce7026201ef4310437d4ecec858457cdbd060663dcc7750117b853b6de68c5d79e3caa0c12229d2ac43088d961b73e5c6feba776a93fd6c83016b42da7b0a98
7
+ data.tar.gz: f25f3967b2782e8172046e677b67b3c5efba87416492520b80dd78a194c6047c0c11beb56804397d9b81b057d68e397ac2a1a4e2d4e118d8c4b97f7888c60e88
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.336
1
+ 1.0.337
data/docs/user.md CHANGED
@@ -131,7 +131,7 @@
131
131
  * `avatar_delete` (boolean): If true, the avatar will be deleted.
132
132
  * `change_password` (string): Used for changing a password on an existing user.
133
133
  * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
134
- * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
134
+ * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
135
135
  * `group_id` (int64): Group ID to associate this user with.
136
136
  * `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.
137
137
  * `password` (string): User password.
@@ -237,7 +237,7 @@ Files::User.create(
237
237
  * `change_password` (string): Used for changing a password on an existing user.
238
238
  * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
239
239
  * `email` (string): User's email.
240
- * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
240
+ * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
241
241
  * `group_id` (int64): Group ID to associate this user with.
242
242
  * `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
243
243
  * `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.
@@ -371,7 +371,7 @@ Files::User.update(id,
371
371
  * `change_password` (string): Used for changing a password on an existing user.
372
372
  * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
373
373
  * `email` (string): User's email.
374
- * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
374
+ * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
375
375
  * `group_id` (int64): Group ID to associate this user with.
376
376
  * `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
377
377
  * `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.
@@ -526,7 +526,7 @@ user.update(
526
526
  * `change_password` (string): Used for changing a password on an existing user.
527
527
  * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
528
528
  * `email` (string): User's email.
529
- * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
529
+ * `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
530
530
  * `group_id` (int64): Group ID to associate this user with.
531
531
  * `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
532
532
  * `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.
@@ -572,7 +572,7 @@ module Files
572
572
  @attributes[:change_password_confirmation] = value
573
573
  end
574
574
 
575
- # string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
575
+ # string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
576
576
  def grant_permission
577
577
  @attributes[:grant_permission]
578
578
  end
@@ -665,7 +665,7 @@ module Files
665
665
  # change_password - string - Used for changing a password on an existing user.
666
666
  # change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
667
667
  # email - string - User's email.
668
- # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
668
+ # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
669
669
  # group_id - int64 - Group ID to associate this user with.
670
670
  # group_ids - string - A list of group ids to associate this user with. Comma delimited.
671
671
  # 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.
@@ -825,7 +825,7 @@ module Files
825
825
  # change_password - string - Used for changing a password on an existing user.
826
826
  # change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
827
827
  # email - string - User's email.
828
- # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
828
+ # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
829
829
  # group_id - int64 - Group ID to associate this user with.
830
830
  # group_ids - string - A list of group ids to associate this user with. Comma delimited.
831
831
  # 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.
@@ -934,7 +934,7 @@ module Files
934
934
  # change_password - string - Used for changing a password on an existing user.
935
935
  # change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
936
936
  # email - string - User's email.
937
- # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `history`.
937
+ # grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
938
938
  # group_id - int64 - Group ID to associate this user with.
939
939
  # group_ids - string - A list of group ids to associate this user with. Comma delimited.
940
940
  # 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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.336
4
+ version: 1.0.337
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-11 00:00:00.000000000 Z
11
+ date: 2023-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable