files.com 1.0.204 → 1.0.205
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.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/user.md +4 -4
- data/lib/files.com/models/user.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8464d4566cfa86c36e356bbca9c2d6e61ad7979e95c3ab156caed919e9d3f3e
|
|
4
|
+
data.tar.gz: e56f8d609526e24ec6c1c15e9fb25d8b185e3b6d305bc0e4f1acb33cc3362a08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e5e2efe33c13efe80e1d5d287c1040bb0b892944c3b7390b09e347908d137b08d65ce13c64dcc5f0134ddb43c59492087e69d2a87e23fd40ced1b25a207ed37
|
|
7
|
+
data.tar.gz: f1bed388135f56850129c82d0922b323d03bcba01b96049395b4baccbe0240f4947532e319acb645ee49613a841a8691a4595278dcc58ff9bb05e9fb6bde23ba
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
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.
|