files.com 1.0.163 → 1.0.164
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
- 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: f6994eba8214ae844cfd46a5bd4efdbec515559b5bf399a7c3bab26baa9a9ae4
|
|
4
|
+
data.tar.gz: 125c7c61c307d492cdfb6d98a3e9b9d3799341149bb19fc06d8527888568cceb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58320abb0437d4a596ccf908b819b73f09803f7e17c37eeebfe2dc8001582136c35c7812699482b53f5964da7c459fac3ae1a45b86c8633098d105b4a18e2830
|
|
7
|
+
data.tar.gz: 8682a7d205f225f9a9e5fcd41ad83144dfcfd9a8efe2f5d4d55f84b9fb29544c56f2b031546ff8a0ce66be7a798d3f7a5c58ded307ded463982c576610ee3716
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.164
|
data/docs/site.md
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"ask_about_overwrites": true,
|
|
17
17
|
"bundle_expiration": 1,
|
|
18
18
|
"bundle_password_required": true,
|
|
19
|
+
"bundle_require_share_recipient": true,
|
|
19
20
|
"color2_left": "#0066a7",
|
|
20
21
|
"color2_link": "#d34f5d",
|
|
21
22
|
"color2_text": "#0066a7",
|
|
@@ -216,6 +217,7 @@
|
|
|
216
217
|
* `ask_about_overwrites` (boolean): If false, rename conflicting files instead of asking for overwrite confirmation. Only applies to web interface.
|
|
217
218
|
* `bundle_expiration` (int64): Site-wide Bundle expiration in days
|
|
218
219
|
* `bundle_password_required` (boolean): Do Bundles require password protection?
|
|
220
|
+
* `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
|
|
219
221
|
* `color2_left` (string): Page link and button color
|
|
220
222
|
* `color2_link` (string): Top bar link color
|
|
221
223
|
* `color2_text` (string): Page link and button color
|
|
@@ -388,6 +390,7 @@ Files::Site.update(
|
|
|
388
390
|
immutable_files: true,
|
|
389
391
|
session_pinned_by_ip: true,
|
|
390
392
|
bundle_password_required: true,
|
|
393
|
+
bundle_require_share_recipient: true,
|
|
391
394
|
password_requirements_apply_to_bundles: true,
|
|
392
395
|
opt_out_global: true,
|
|
393
396
|
use_provided_modified_at: true,
|
|
@@ -484,6 +487,7 @@ Files::Site.update(
|
|
|
484
487
|
* `immutable_files` (boolean): Are files protected from modification?
|
|
485
488
|
* `session_pinned_by_ip` (boolean): Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
|
|
486
489
|
* `bundle_password_required` (boolean): Do Bundles require password protection?
|
|
490
|
+
* `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
|
|
487
491
|
* `password_requirements_apply_to_bundles` (boolean): Require bundles' passwords, and passwords for other items (inboxes, public shares, etc.) to conform to the same requirements as users' passwords?
|
|
488
492
|
* `opt_out_global` (boolean): Use servers in the USA only?
|
|
489
493
|
* `use_provided_modified_at` (boolean): Allow uploaders to set `provided_modified_at` for uploaded files?
|
|
@@ -69,6 +69,11 @@ module Files
|
|
|
69
69
|
@attributes[:bundle_password_required]
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
+
# boolean - Do Bundles require recipients for sharing?
|
|
73
|
+
def bundle_require_share_recipient
|
|
74
|
+
@attributes[:bundle_require_share_recipient]
|
|
75
|
+
end
|
|
76
|
+
|
|
72
77
|
# string - Page link and button color
|
|
73
78
|
def color2_left
|
|
74
79
|
@attributes[:color2_left]
|
|
@@ -632,6 +637,7 @@ module Files
|
|
|
632
637
|
# immutable_files - boolean - Are files protected from modification?
|
|
633
638
|
# session_pinned_by_ip - boolean - Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
|
|
634
639
|
# bundle_password_required - boolean - Do Bundles require password protection?
|
|
640
|
+
# bundle_require_share_recipient - boolean - Do Bundles require recipients for sharing?
|
|
635
641
|
# password_requirements_apply_to_bundles - boolean - Require bundles' passwords, and passwords for other items (inboxes, public shares, etc.) to conform to the same requirements as users' passwords?
|
|
636
642
|
# opt_out_global - boolean - Use servers in the USA only?
|
|
637
643
|
# use_provided_modified_at - boolean - Allow uploaders to set `provided_modified_at` for uploaded files?
|
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.0.
|
|
4
|
+
version: 1.0.164
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-04-
|
|
11
|
+
date: 2021-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|