files.com 1.0.80 → 1.0.81
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 +2 -4
- data/lib/files.com/models/user.rb +1 -1
- 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: 0f13e9439935282f888848cf62de34ed6690015df2311d95dc146655b2d759ba
|
|
4
|
+
data.tar.gz: fa4c5922cb63c77e6aee687c26f85b3d36ca481d1ba451ce7453565419f0cd35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0140d067ec0a4ea64d6c1117fb74cf0aa877ca3eb3f80ce594be510c727181be02b241335bf686ed097019640a266be5c7b5485fcb95d6fcc16bf5723078f813
|
|
7
|
+
data.tar.gz: 7c3cd89ee9470a7ed1f6fef804087bd15947f9140770f7f955e03ec22b46bc4d89e2692b539f9f629e5ec51fd057e6fb566a613881963b68e104fc9f30327859
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.81
|
data/docs/user.md
CHANGED
|
@@ -23,9 +23,7 @@
|
|
|
23
23
|
"disabled": true,
|
|
24
24
|
"email": "john.doe@files.com",
|
|
25
25
|
"ftp_permission": true,
|
|
26
|
-
"group_ids":
|
|
27
|
-
|
|
28
|
-
],
|
|
26
|
+
"group_ids": "",
|
|
29
27
|
"header_text": "User-specific message.",
|
|
30
28
|
"language": "en",
|
|
31
29
|
"last_login_at": "2000-01-01T01:00:00Z",
|
|
@@ -72,7 +70,7 @@
|
|
|
72
70
|
* `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting.
|
|
73
71
|
* `email` (email): User email address
|
|
74
72
|
* `ftp_permission` (boolean): Can the user access with FTP/FTPS?
|
|
75
|
-
* `group_ids` (
|
|
73
|
+
* `group_ids` (string): Comma-separated list of group IDs of which this user is a member
|
|
76
74
|
* `header_text` (string): Text to display to the user in the header of the UI
|
|
77
75
|
* `language` (string): Preferred language
|
|
78
76
|
* `last_login_at` (date-time): User's last login time
|
|
@@ -158,7 +158,7 @@ module Files
|
|
|
158
158
|
@attributes[:ftp_permission] = value
|
|
159
159
|
end
|
|
160
160
|
|
|
161
|
-
#
|
|
161
|
+
# string - Comma-separated list of group IDs of which this user is a member
|
|
162
162
|
def group_ids
|
|
163
163
|
@attributes[:group_ids]
|
|
164
164
|
end
|