files.com 1.1.708 → 1.1.709
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: a94f703ac9332e5cd5d804cdd2b3c33e94c03879992b67b3cc112ca4eb1571f0
|
|
4
|
+
data.tar.gz: 7f0e3f04117a2734927d8c8137da6f8a40546fa2ac4a1d239f3a45c47f48c68f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abe781b041e843086b24a25d2a5075ea6f87dbb639a5f1d6e55d4cbace7bff0da9a6e0d641d686df1405e6e7f257a4d086e488aeebdc459c4da66c2f878e6d4a
|
|
7
|
+
data.tar.gz: da472b5f43c88237ef00e8fa16d6468b63620d90f283e8d8665ecd095340eb412bb17a23432d94f36f70bce4f74d7c50520f8f38d398e8fffa012a484891224a
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.709
|
data/docs/site.md
CHANGED
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"bundle_registration_notifications": "never",
|
|
48
48
|
"bundle_require_registration": true,
|
|
49
49
|
"bundle_require_share_recipient": true,
|
|
50
|
+
"bundle_send_one_time_password_to_recipient_at_registration": true,
|
|
50
51
|
"bundle_require_note": true,
|
|
51
52
|
"bundle_send_shared_receipts": true,
|
|
52
53
|
"bundle_upload_receipt_notifications": "never",
|
|
@@ -393,6 +394,7 @@
|
|
|
393
394
|
* `bundle_registration_notifications` (string): Do Bundle owners receive registration notification?
|
|
394
395
|
* `bundle_require_registration` (boolean): Do Bundles require registration?
|
|
395
396
|
* `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
|
|
397
|
+
* `bundle_send_one_time_password_to_recipient_at_registration` (boolean): If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
|
|
396
398
|
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
|
397
399
|
* `bundle_send_shared_receipts` (boolean): Do Bundle creators receive receipts of invitations?
|
|
398
400
|
* `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
|
|
@@ -663,6 +665,7 @@ Files::Site.update(
|
|
|
663
665
|
bundle_password_required: false,
|
|
664
666
|
bundle_require_registration: false,
|
|
665
667
|
bundle_require_share_recipient: false,
|
|
668
|
+
bundle_send_one_time_password_to_recipient_at_registration: false,
|
|
666
669
|
bundle_registration_notifications: "never",
|
|
667
670
|
bundle_activity_notifications: "never",
|
|
668
671
|
bundle_upload_receipt_notifications: "never",
|
|
@@ -845,6 +848,7 @@ Files::Site.update(
|
|
|
845
848
|
* `bundle_password_required` (boolean): Do Bundles require password protection?
|
|
846
849
|
* `bundle_require_registration` (boolean): Do Bundles require registration?
|
|
847
850
|
* `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
|
|
851
|
+
* `bundle_send_one_time_password_to_recipient_at_registration` (boolean): If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
|
|
848
852
|
* `bundle_registration_notifications` (string): Do Bundle owners receive registration notification?
|
|
849
853
|
* `bundle_activity_notifications` (string): Do Bundle owners receive activity notifications?
|
|
850
854
|
* `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
|
|
@@ -171,6 +171,11 @@ module Files
|
|
|
171
171
|
@attributes[:bundle_require_share_recipient]
|
|
172
172
|
end
|
|
173
173
|
|
|
174
|
+
# boolean - If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
|
|
175
|
+
def bundle_send_one_time_password_to_recipient_at_registration
|
|
176
|
+
@attributes[:bundle_send_one_time_password_to_recipient_at_registration]
|
|
177
|
+
end
|
|
178
|
+
|
|
174
179
|
# boolean - Do Bundles require internal notes?
|
|
175
180
|
def bundle_require_note
|
|
176
181
|
@attributes[:bundle_require_note]
|
|
@@ -1074,6 +1079,7 @@ module Files
|
|
|
1074
1079
|
# bundle_password_required - boolean - Do Bundles require password protection?
|
|
1075
1080
|
# bundle_require_registration - boolean - Do Bundles require registration?
|
|
1076
1081
|
# bundle_require_share_recipient - boolean - Do Bundles require recipients for sharing?
|
|
1082
|
+
# bundle_send_one_time_password_to_recipient_at_registration - boolean - If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
|
|
1077
1083
|
# bundle_registration_notifications - string - Do Bundle owners receive registration notification?
|
|
1078
1084
|
# bundle_activity_notifications - string - Do Bundle owners receive activity notifications?
|
|
1079
1085
|
# bundle_upload_receipt_notifications - string - Do Bundle uploaders receive upload confirmation notifications?
|
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.709
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|