|
18 | 18 | "ask_about_overwrites": true, |
19 | 19 | "bundle_activity_notifications": "never", |
20 | 20 | "bundle_expiration": 1, |
| 21 | + "bundle_not_found_message": "example", |
21 | 22 | "bundle_password_required": true, |
22 | 23 | "bundle_registration_notifications": "never", |
23 | 24 | "bundle_require_registration": true, |
|
237 | 238 | * `ask_about_overwrites` (boolean): If false, rename conflicting files instead of asking for overwrite confirmation. Only applies to web interface. |
238 | 239 | * `bundle_activity_notifications` (string): Do Bundle owners receive activity notifications? |
239 | 240 | * `bundle_expiration` (int64): Site-wide Bundle expiration in days |
| 241 | +* `bundle_not_found_message` (string): Custom error message to show when bundle is not found. |
240 | 242 | * `bundle_password_required` (boolean): Do Bundles require password protection? |
241 | 243 | * `bundle_registration_notifications` (string): Do Bundle owners receive registration notification? |
242 | 244 | * `bundle_require_registration` (boolean): Do Bundles require registration? |
@@ -453,6 +455,7 @@ await Site.update({ |
453 | 455 | 'disable_password_reset': true, |
454 | 456 | 'immutable_files': true, |
455 | 457 | 'session_pinned_by_ip': true, |
| 458 | + 'bundle_not_found_message': "example", |
456 | 459 | 'bundle_password_required': true, |
457 | 460 | 'bundle_require_registration': true, |
458 | 461 | 'bundle_require_share_recipient': true, |
@@ -588,6 +591,7 @@ await Site.update({ |
588 | 591 | * `disable_password_reset` (boolean): Is password reset disabled? |
589 | 592 | * `immutable_files` (boolean): Are files protected from modification? |
590 | 593 | * `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?) |
| 594 | +* `bundle_not_found_message` (string): Custom error message to show when bundle is not found. |
591 | 595 | * `bundle_password_required` (boolean): Do Bundles require password protection? |
592 | 596 | * `bundle_require_registration` (boolean): Do Bundles require registration? |
593 | 597 | * `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing? |
|
0 commit comments