files.com 1.1.152 → 1.1.154
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/site.md +5 -0
- data/docs/user.md +2 -0
- data/lib/files.com/models/site.rb +6 -0
- data/lib/files.com/models/user.rb +9 -0
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b1832dfc9d37bc5c0e9b28a4a199a29e6909a22276af486d93a7e01c44dd892
|
4
|
+
data.tar.gz: 96c7750cf99bde4d77a2d5a198e5c4330c0f175566fce59f8492c8ee5c18cb51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4fb25822beded0ec84d61892b7c3291b7f7fc0b5343bdf9c8ad868d0f3e4892034d417020132a92016c3db1171c3770c816c824026871a0f27b3587ad1dc053d
|
7
|
+
data.tar.gz: 54b92922cf49e3f636c1cb7a8595a49a01c7cce811032bf911b0e8c35177311cecf1656e0410ba0b79723508a36d971b70a3107fef06c524f11c8e504216f81b
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.154
|
data/docs/site.md
CHANGED
@@ -35,6 +35,7 @@
|
|
35
35
|
"bundle_require_registration": true,
|
36
36
|
"bundle_require_share_recipient": true,
|
37
37
|
"bundle_require_note": true,
|
38
|
+
"bundle_send_shared_receipts": true,
|
38
39
|
"bundle_upload_receipt_notifications": "never",
|
39
40
|
"bundle_watermark_attachment": {
|
40
41
|
"name": "My logo",
|
@@ -212,6 +213,7 @@
|
|
212
213
|
"authenticate_until": "2000-01-01T01:00:00Z",
|
213
214
|
"authentication_method": "password",
|
214
215
|
"avatar_url": "example",
|
216
|
+
"billable": true,
|
215
217
|
"billing_permission": false,
|
216
218
|
"bypass_site_allowed_ips": false,
|
217
219
|
"bypass_inactive_disable": false,
|
@@ -315,6 +317,7 @@
|
|
315
317
|
* `bundle_require_registration` (boolean): Do Bundles require registration?
|
316
318
|
* `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
|
317
319
|
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
320
|
+
* `bundle_send_shared_receipts` (boolean): Do Bundle creators receive receipts of invitations?
|
318
321
|
* `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
|
319
322
|
* `bundle_watermark_attachment` (Image): Preview watermark image applied to all bundle items.
|
320
323
|
* `bundle_watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
@@ -512,6 +515,7 @@ Files::Site.update(
|
|
512
515
|
motd_use_for_sftp: true,
|
513
516
|
additional_text_file_types: ["example"],
|
514
517
|
bundle_require_note: true,
|
518
|
+
bundle_send_shared_receipts: true,
|
515
519
|
session_expiry: 1.0,
|
516
520
|
ssl_required: true,
|
517
521
|
tls_disabled: true,
|
@@ -664,6 +668,7 @@ Files::Site.update(
|
|
664
668
|
* `left_navigation_visibility` (object): Visibility settings for account navigation
|
665
669
|
* `additional_text_file_types` (array(string)): Additional extensions that are considered text files
|
666
670
|
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
671
|
+
* `bundle_send_shared_receipts` (boolean): Do Bundle creators receive receipts of invitations?
|
667
672
|
* `session_expiry` (double): Session expiry in hours
|
668
673
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
669
674
|
* `tls_disabled` (boolean): DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
data/docs/user.md
CHANGED
@@ -15,6 +15,7 @@
|
|
15
15
|
"authenticate_until": "2000-01-01T01:00:00Z",
|
16
16
|
"authentication_method": "password",
|
17
17
|
"avatar_url": "example",
|
18
|
+
"billable": true,
|
18
19
|
"billing_permission": true,
|
19
20
|
"bypass_site_allowed_ips": true,
|
20
21
|
"bypass_inactive_disable": true,
|
@@ -82,6 +83,7 @@
|
|
82
83
|
* `authenticate_until` (date-time): Scheduled Date/Time at which user will be deactivated
|
83
84
|
* `authentication_method` (string): How is this user authenticated?
|
84
85
|
* `avatar_url` (string): URL holding the user's avatar
|
86
|
+
* `billable` (boolean): Is this a billable user record?
|
85
87
|
* `billing_permission` (boolean): Allow this user to perform operations on the account, payments, and invoices?
|
86
88
|
* `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists?
|
87
89
|
* `bypass_inactive_disable` (boolean): Exempt this user from being disabled based on inactivity?
|
@@ -144,6 +144,11 @@ module Files
|
|
144
144
|
@attributes[:bundle_require_note]
|
145
145
|
end
|
146
146
|
|
147
|
+
# boolean - Do Bundle creators receive receipts of invitations?
|
148
|
+
def bundle_send_shared_receipts
|
149
|
+
@attributes[:bundle_send_shared_receipts]
|
150
|
+
end
|
151
|
+
|
147
152
|
# string - Do Bundle uploaders receive upload confirmation notifications?
|
148
153
|
def bundle_upload_receipt_notifications
|
149
154
|
@attributes[:bundle_upload_receipt_notifications]
|
@@ -871,6 +876,7 @@ module Files
|
|
871
876
|
# left_navigation_visibility - object - Visibility settings for account navigation
|
872
877
|
# additional_text_file_types - array(string) - Additional extensions that are considered text files
|
873
878
|
# bundle_require_note - boolean - Do Bundles require internal notes?
|
879
|
+
# bundle_send_shared_receipts - boolean - Do Bundle creators receive receipts of invitations?
|
874
880
|
# session_expiry - double - Session expiry in hours
|
875
881
|
# ssl_required - boolean - Is SSL required? Disabling this is insecure.
|
876
882
|
# tls_disabled - boolean - DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
@@ -90,6 +90,15 @@ module Files
|
|
90
90
|
@attributes[:avatar_url] = value
|
91
91
|
end
|
92
92
|
|
93
|
+
# boolean - Is this a billable user record?
|
94
|
+
def billable
|
95
|
+
@attributes[:billable]
|
96
|
+
end
|
97
|
+
|
98
|
+
def billable=(value)
|
99
|
+
@attributes[:billable] = value
|
100
|
+
end
|
101
|
+
|
93
102
|
# boolean - Allow this user to perform operations on the account, payments, and invoices?
|
94
103
|
def billing_permission
|
95
104
|
@attributes[:billing_permission]
|
data/lib/files.com/version.rb
CHANGED
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.1.
|
4
|
+
version: 1.1.154
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|