files.com 1.1.577 → 1.1.578
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 +5 -0
- data/lib/files.com/models/site.rb +6 -0
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7a9474aee1909f849b815061c17af151a30f2662eee30489e4144688d992aa7
|
|
4
|
+
data.tar.gz: 8416c7681a8c315c1798fb4ac93cd86b353d18acf2f5544c62cc2fb8343265aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d7903b3044aaca5a613b6c41abc3637365709316eacecf62fd2e6b08b4f80346ca88151d5449649f23df03ff662d0761e0e883d3b97326487e6a55441846eca
|
|
7
|
+
data.tar.gz: 4180d08f7740fa8e084f565a1124b96819f731b79136b69bac31e9686aa6373097321dca93fd30d1f406688ee99db8a898620a23e33362ae5ec655051e5b623c
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.578
|
data/docs/site.md
CHANGED
|
@@ -187,12 +187,14 @@
|
|
|
187
187
|
"calculate_file_checksums_sha1": true,
|
|
188
188
|
"calculate_file_checksums_sha256": true,
|
|
189
189
|
"legacy_checksums_mode": true,
|
|
190
|
+
"finalize_partial_uploads": true,
|
|
190
191
|
"use_provided_modified_at": true,
|
|
191
192
|
"windows_mode_ftp": false,
|
|
192
193
|
"user_belongs_to_parent_site": false,
|
|
193
194
|
"impersonator_user_id": 1
|
|
194
195
|
},
|
|
195
196
|
"sftp_enabled": true,
|
|
197
|
+
"sftp_finalize_partial_uploads": true,
|
|
196
198
|
"sftp_host_key_type": "default",
|
|
197
199
|
"active_sftp_host_key_id": 1,
|
|
198
200
|
"sftp_insecure_ciphers": true,
|
|
@@ -451,6 +453,7 @@
|
|
|
451
453
|
* `require_logout_from_bundles_and_inboxes` (boolean): If true, we will hide the 'Remember Me' box on Inbox and Bundle registration pages, requiring that the user logout and log back in every time they visit the page.
|
|
452
454
|
* `session` (Session): Current session
|
|
453
455
|
* `sftp_enabled` (boolean): Is SFTP enabled?
|
|
456
|
+
* `sftp_finalize_partial_uploads` (boolean): Finalize partial SFTP uploads from interrupted connections? Default: true.
|
|
454
457
|
* `sftp_host_key_type` (string): Sftp Host Key Type
|
|
455
458
|
* `active_sftp_host_key_id` (int64): Id of the currently selected custom SFTP Host Key
|
|
456
459
|
* `sftp_insecure_ciphers` (boolean): If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severely weakens the security of your site and it is not recommend, except as a last resort for compatibility.
|
|
@@ -615,6 +618,7 @@ Files::Site.update(
|
|
|
615
618
|
dav_enabled: false,
|
|
616
619
|
ftp_enabled: false,
|
|
617
620
|
sftp_enabled: false,
|
|
621
|
+
sftp_finalize_partial_uploads: false,
|
|
618
622
|
users_can_create_api_keys: false,
|
|
619
623
|
users_can_create_ssh_keys: false,
|
|
620
624
|
show_user_notifications_log_in_link: false,
|
|
@@ -779,6 +783,7 @@ Files::Site.update(
|
|
|
779
783
|
* `dav_enabled` (boolean): Is WebDAV enabled?
|
|
780
784
|
* `ftp_enabled` (boolean): Is FTP enabled?
|
|
781
785
|
* `sftp_enabled` (boolean): Is SFTP enabled?
|
|
786
|
+
* `sftp_finalize_partial_uploads` (boolean): Finalize partial SFTP uploads from interrupted connections? Default: true.
|
|
782
787
|
* `users_can_create_api_keys` (boolean): Allow users to create their own API keys?
|
|
783
788
|
* `users_can_create_ssh_keys` (boolean): Allow users to create their own SSH keys?
|
|
784
789
|
* `show_user_notifications_log_in_link` (boolean): Show log in link in user notifications?
|
|
@@ -679,6 +679,11 @@ module Files
|
|
|
679
679
|
@attributes[:sftp_enabled]
|
|
680
680
|
end
|
|
681
681
|
|
|
682
|
+
# boolean - Finalize partial SFTP uploads from interrupted connections? Default: true.
|
|
683
|
+
def sftp_finalize_partial_uploads
|
|
684
|
+
@attributes[:sftp_finalize_partial_uploads]
|
|
685
|
+
end
|
|
686
|
+
|
|
682
687
|
# string - Sftp Host Key Type
|
|
683
688
|
def sftp_host_key_type
|
|
684
689
|
@attributes[:sftp_host_key_type]
|
|
@@ -1001,6 +1006,7 @@ module Files
|
|
|
1001
1006
|
# dav_enabled - boolean - Is WebDAV enabled?
|
|
1002
1007
|
# ftp_enabled - boolean - Is FTP enabled?
|
|
1003
1008
|
# sftp_enabled - boolean - Is SFTP enabled?
|
|
1009
|
+
# sftp_finalize_partial_uploads - boolean - Finalize partial SFTP uploads from interrupted connections? Default: true.
|
|
1004
1010
|
# users_can_create_api_keys - boolean - Allow users to create their own API keys?
|
|
1005
1011
|
# users_can_create_ssh_keys - boolean - Allow users to create their own SSH keys?
|
|
1006
1012
|
# show_user_notifications_log_in_link - boolean - Show log in link in user notifications?
|
data/lib/files.com/version.rb
CHANGED