files.com 1.1.99 → 1.1.100
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 +4 -0
- data/lib/files.com/models/site.rb +6 -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: 65cd49d3f2cd4ffc3ced8ae8d0b433a7637f241c7d828a045b105bb4acbdf8f5
|
|
4
|
+
data.tar.gz: 8166b6cbcded16d687309cc4c2b6231f77c8880a748cef44c286543a497e94a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c97780e899aff6d83ac371fcac4984c9918dcca159c3ea415f131e6b9c2505855be9d3c85d49672ff34d8749b715fd3334c7de036d23305d23da3637828dcd59
|
|
7
|
+
data.tar.gz: 55ae843492ee69badbdae587db58e554920a97771e67fbd1a7ccf3134de0f6f3070d6e30eeef253b11a74f58ca0e45d8d4dafa6729a1de1214052cd41d1c37f9
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.100
|
data/docs/site.md
CHANGED
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"bundle_registration_notifications": "never",
|
|
35
35
|
"bundle_require_registration": true,
|
|
36
36
|
"bundle_require_share_recipient": true,
|
|
37
|
+
"bundle_require_note": true,
|
|
37
38
|
"bundle_upload_receipt_notifications": "never",
|
|
38
39
|
"bundle_watermark_attachment": {
|
|
39
40
|
"name": "My logo",
|
|
@@ -308,6 +309,7 @@
|
|
|
308
309
|
* `bundle_registration_notifications` (string): Do Bundle owners receive registration notification?
|
|
309
310
|
* `bundle_require_registration` (boolean): Do Bundles require registration?
|
|
310
311
|
* `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
|
|
312
|
+
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
|
311
313
|
* `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
|
|
312
314
|
* `bundle_watermark_attachment` (Image): Preview watermark image applied to all bundle items.
|
|
313
315
|
* `bundle_watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
|
@@ -502,6 +504,7 @@ Files::Site.update(
|
|
|
502
504
|
motd_use_for_ftp: true,
|
|
503
505
|
motd_use_for_sftp: true,
|
|
504
506
|
additional_text_file_types: ["example"],
|
|
507
|
+
bundle_require_note: true,
|
|
505
508
|
session_expiry: 1.0,
|
|
506
509
|
ssl_required: true,
|
|
507
510
|
tls_disabled: true,
|
|
@@ -652,6 +655,7 @@ Files::Site.update(
|
|
|
652
655
|
* `motd_use_for_sftp` (boolean): Show message to users connecting via SFTP
|
|
653
656
|
* `left_navigation_visibility` (object): Visibility settings for account navigation
|
|
654
657
|
* `additional_text_file_types` (array(string)): Additional extensions that are considered text files
|
|
658
|
+
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
|
655
659
|
* `session_expiry` (double): Session expiry in hours
|
|
656
660
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
|
657
661
|
* `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.
|
|
@@ -139,6 +139,11 @@ module Files
|
|
|
139
139
|
@attributes[:bundle_require_share_recipient]
|
|
140
140
|
end
|
|
141
141
|
|
|
142
|
+
# boolean - Do Bundles require internal notes?
|
|
143
|
+
def bundle_require_note
|
|
144
|
+
@attributes[:bundle_require_note]
|
|
145
|
+
end
|
|
146
|
+
|
|
142
147
|
# string - Do Bundle uploaders receive upload confirmation notifications?
|
|
143
148
|
def bundle_upload_receipt_notifications
|
|
144
149
|
@attributes[:bundle_upload_receipt_notifications]
|
|
@@ -855,6 +860,7 @@ module Files
|
|
|
855
860
|
# motd_use_for_sftp - boolean - Show message to users connecting via SFTP
|
|
856
861
|
# left_navigation_visibility - object - Visibility settings for account navigation
|
|
857
862
|
# additional_text_file_types - array(string) - Additional extensions that are considered text files
|
|
863
|
+
# bundle_require_note - boolean - Do Bundles require internal notes?
|
|
858
864
|
# session_expiry - double - Session expiry in hours
|
|
859
865
|
# ssl_required - boolean - Is SSL required? Disabling this is insecure.
|
|
860
866
|
# 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/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.100
|
|
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-07-
|
|
11
|
+
date: 2024-07-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|