files.com 1.1.280 → 1.1.281
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 +1 -3
- data/lib/files.com/models/user.rb +0 -9
- data/lib/files.com/version.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: 277e804b31fa7a56ea56f43b4530e1975537c5f61e2fa7a6b5060eb6ac3c5cfc
|
4
|
+
data.tar.gz: b2f8b3df404cc7f5693fd7c67b4f2d663c4ce2c9263953cf07b706d190a0ea55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58a16e0aad5987d0278448db3f8c8752b3ba83b40ccb6b3e4e912797929eca441290e0cb8304d80a0ee9af7a75c2ba503257824852095efa223fac61fad41469
|
7
|
+
data.tar.gz: b93231b4bae81644b269acb0748bea33a72921afb5671568ebef62a1c2897417520c19d448065a4ff8fbbdc95a481ed312649b7f8f50814cab48803c14b37233
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.281
|
data/docs/user.md
CHANGED
@@ -71,8 +71,7 @@
|
|
71
71
|
"user_root": "example",
|
72
72
|
"user_home": "example",
|
73
73
|
"days_remaining_until_password_expire": 1,
|
74
|
-
"password_expire_at": "2000-01-01T01:00:00Z"
|
75
|
-
"has_reassignable_associations": true
|
74
|
+
"password_expire_at": "2000-01-01T01:00:00Z"
|
76
75
|
}
|
77
76
|
```
|
78
77
|
|
@@ -142,7 +141,6 @@
|
|
142
141
|
* `user_home` (string): Home folder for FTP/SFTP. Note that this is not used for API, Desktop, or Web interface.
|
143
142
|
* `days_remaining_until_password_expire` (int64): Number of days remaining until password expires
|
144
143
|
* `password_expire_at` (date-time): Password expiration datetime
|
145
|
-
* `has_reassignable_associations` (boolean): Does this user have any associations that can be reassigned on delete?
|
146
144
|
* `avatar_file` (file): An image file for your user avatar.
|
147
145
|
* `avatar_delete` (boolean): If true, the avatar will be deleted.
|
148
146
|
* `change_password` (string): Used for changing a password on an existing user.
|
@@ -599,15 +599,6 @@ module Files
|
|
599
599
|
@attributes[:password_expire_at] = value
|
600
600
|
end
|
601
601
|
|
602
|
-
# boolean - Does this user have any associations that can be reassigned on delete?
|
603
|
-
def has_reassignable_associations
|
604
|
-
@attributes[:has_reassignable_associations]
|
605
|
-
end
|
606
|
-
|
607
|
-
def has_reassignable_associations=(value)
|
608
|
-
@attributes[:has_reassignable_associations] = value
|
609
|
-
end
|
610
|
-
|
611
602
|
# file - An image file for your user avatar.
|
612
603
|
def avatar_file
|
613
604
|
@attributes[:avatar_file]
|
data/lib/files.com/version.rb
CHANGED