files.com 1.0.249 → 1.0.250
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.
- package/_VERSION +1 -1
- package/docs/models/Site.md +4 -0
- package/lib/models/Site.js +5 -0
- package/package.json +1 -1
- package/src/models/Site.js +4 -0
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.250
|
package/docs/models/Site.md
CHANGED
@@ -26,6 +26,7 @@
|
|
26
26
|
"bundle_watermark_value": {
|
27
27
|
"key": "example value"
|
28
28
|
},
|
29
|
+
"uploads_via_email_authentication": true,
|
29
30
|
"color2_left": "#0066a7",
|
30
31
|
"color2_link": "#d34f5d",
|
31
32
|
"color2_text": "#0066a7",
|
@@ -171,6 +172,7 @@
|
|
171
172
|
* `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
|
172
173
|
* `bundle_watermark_attachment` (Image): Preview watermark image applied to all bundle items.
|
173
174
|
* `bundle_watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
175
|
+
* `uploads_via_email_authentication` (boolean): Do incoming emails in the Inboxes require checking for SPF/DKIM/DMARC?
|
174
176
|
* `color2_left` (string): Page link and button color
|
175
177
|
* `color2_link` (string): Top bar link color
|
176
178
|
* `color2_text` (string): Page link and button color
|
@@ -434,6 +436,7 @@ await Site.update({
|
|
434
436
|
'ldap_group_exclusion': "example",
|
435
437
|
'ldap_group_inclusion': "example",
|
436
438
|
'ldap_base_dn': "example",
|
439
|
+
'uploads_via_email_authentication': true,
|
437
440
|
'icon16_delete': true,
|
438
441
|
'icon32_delete': true,
|
439
442
|
'icon48_delete': true,
|
@@ -564,6 +567,7 @@ await Site.update({
|
|
564
567
|
* `ldap_group_exclusion` (string): Comma or newline separated list of group names (with optional wildcards) to exclude when syncing.
|
565
568
|
* `ldap_group_inclusion` (string): Comma or newline separated list of group names (with optional wildcards) to include when syncing.
|
566
569
|
* `ldap_base_dn` (string): Base DN for looking up users in LDAP server
|
570
|
+
* `uploads_via_email_authentication` (boolean): Do incoming emails in the Inboxes require checking for SPF/DKIM/DMARC?
|
567
571
|
* `icon16_file` (file):
|
568
572
|
* `icon16_delete` (boolean): If true, will delete the file stored in icon16
|
569
573
|
* `icon32_file` (file):
|
package/lib/models/Site.js
CHANGED
@@ -111,6 +111,10 @@ var Site = /*#__PURE__*/(0, _createClass2.default)(function Site() {
|
|
111
111
|
(0, _defineProperty2.default)(this, "getBundleWatermarkValue", function () {
|
112
112
|
return _this.attributes.bundle_watermark_value;
|
113
113
|
});
|
114
|
+
// boolean # Do incoming emails in the Inboxes require checking for SPF/DKIM/DMARC?
|
115
|
+
(0, _defineProperty2.default)(this, "getUploadsViaEmailAuthentication", function () {
|
116
|
+
return _this.attributes.uploads_via_email_authentication;
|
117
|
+
});
|
114
118
|
// string # Page link and button color
|
115
119
|
(0, _defineProperty2.default)(this, "getColor2Left", function () {
|
116
120
|
return _this.attributes.color2_left;
|
@@ -767,6 +771,7 @@ var Site = /*#__PURE__*/(0, _createClass2.default)(function Site() {
|
|
767
771
|
// ldap_group_exclusion - string - Comma or newline separated list of group names (with optional wildcards) to exclude when syncing.
|
768
772
|
// ldap_group_inclusion - string - Comma or newline separated list of group names (with optional wildcards) to include when syncing.
|
769
773
|
// ldap_base_dn - string - Base DN for looking up users in LDAP server
|
774
|
+
// uploads_via_email_authentication - boolean - Do incoming emails in the Inboxes require checking for SPF/DKIM/DMARC?
|
770
775
|
// icon16_file - file
|
771
776
|
// icon16_delete - boolean - If true, will delete the file stored in icon16
|
772
777
|
// icon32_file - file
|
package/package.json
CHANGED
package/src/models/Site.js
CHANGED
@@ -83,6 +83,9 @@ class Site {
|
|
83
83
|
// object # Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
84
84
|
getBundleWatermarkValue = () => this.attributes.bundle_watermark_value
|
85
85
|
|
86
|
+
// boolean # Do incoming emails in the Inboxes require checking for SPF/DKIM/DMARC?
|
87
|
+
getUploadsViaEmailAuthentication = () => this.attributes.uploads_via_email_authentication
|
88
|
+
|
86
89
|
// string # Page link and button color
|
87
90
|
getColor2Left = () => this.attributes.color2_left
|
88
91
|
|
@@ -579,6 +582,7 @@ class Site {
|
|
579
582
|
// ldap_group_exclusion - string - Comma or newline separated list of group names (with optional wildcards) to exclude when syncing.
|
580
583
|
// ldap_group_inclusion - string - Comma or newline separated list of group names (with optional wildcards) to include when syncing.
|
581
584
|
// ldap_base_dn - string - Base DN for looking up users in LDAP server
|
585
|
+
// uploads_via_email_authentication - boolean - Do incoming emails in the Inboxes require checking for SPF/DKIM/DMARC?
|
582
586
|
// icon16_file - file
|
583
587
|
// icon16_delete - boolean - If true, will delete the file stored in icon16
|
584
588
|
// icon32_file - file
|