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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26f34ec12086b921d21520290718b73c415472b47b1ca12322ae158bc39aa655
4
- data.tar.gz: 1c37be329b75bd0f804bc3155bee926af2aa694b3deb1872e57a6883270e35e0
3
+ metadata.gz: f7a9474aee1909f849b815061c17af151a30f2662eee30489e4144688d992aa7
4
+ data.tar.gz: 8416c7681a8c315c1798fb4ac93cd86b353d18acf2f5544c62cc2fb8343265aa
5
5
  SHA512:
6
- metadata.gz: 5b1ed62c31ab2faebf60442f896353f4cb6ef69f63a43be19ce3ccca8571a3b5f0c0c0b287af4fd1c2ed4acee8ab719b26aedcf4c952eb8e79033df4ce94a896
7
- data.tar.gz: 4fe9e7c33201946e6914be0d700435e406aea583adfa6d300a3016787c6b55f675dd46f4be5d0acc4c54b6fd77db32d92c7a08d6e7fbd3234bbe8bfa462db519
6
+ metadata.gz: 1d7903b3044aaca5a613b6c41abc3637365709316eacecf62fd2e6b08b4f80346ca88151d5449649f23df03ff662d0761e0e883d3b97326487e6a55441846eca
7
+ data.tar.gz: 4180d08f7740fa8e084f565a1124b96819f731b79136b69bac31e9686aa6373097321dca93fd30d1f406688ee99db8a898620a23e33362ae5ec655051e5b623c
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.577
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?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.577"
4
+ VERSION = "1.1.578"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.577
4
+ version: 1.1.578
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com