files.com 1.1.176 → 1.1.177
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -1
- data/_VERSION +1 -1
- data/docs/site.md +0 -4
- data/lib/files.com/errors.rb +0 -1
- data/lib/files.com/models/site.rb +0 -6
- 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: 3d52309811f6d1ad8e9e4887d9c38184fe5b3f51dea671be3e51becb1ea9c68d
|
4
|
+
data.tar.gz: b8f5af7c2ecd1cd6330d241f1d718d766ea4f8224338502507566720a1d5103c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4914e229074c64c0842707fd4da752598f132b6996182927fcbcf8f3845b6accca163e146bf95ad42a239a118da52d98c5630af7e0ab49d93d826dcb473fb438
|
7
|
+
data.tar.gz: 7d3807f00f34a8bb1bf14420f8d692ff36b25cae3eaf6f945e4b6fd857a7ed4e8936d8c78281ea64fce787f88aea2dcaa740a86a4db50e8cbd6352a9e218869b
|
data/README.md
CHANGED
@@ -422,7 +422,6 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
|
|
422
422
|
|`UserIdWithoutSiteAdminError`| `NotAuthorizedError` |
|
423
423
|
|`WriteAndBundlePermissionRequiredError`| `NotAuthorizedError` |
|
424
424
|
|`WritePermissionRequiredError`| `NotAuthorizedError` |
|
425
|
-
|`ZipDownloadIpMismatchError`| `NotAuthorizedError` |
|
426
425
|
|`ApiKeyNotFoundError`| `NotFoundError` |
|
427
426
|
|`BundlePathNotFoundError`| `NotFoundError` |
|
428
427
|
|`BundleRegistrationNotFoundError`| `NotFoundError` |
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.177
|
data/docs/site.md
CHANGED
@@ -184,7 +184,6 @@
|
|
184
184
|
"windows_mode_ftp": false,
|
185
185
|
"user_belongs_to_parent_site": false
|
186
186
|
},
|
187
|
-
"session_pinned_by_ip": true,
|
188
187
|
"sftp_enabled": true,
|
189
188
|
"sftp_host_key_type": "default",
|
190
189
|
"active_sftp_host_key_id": 1,
|
@@ -425,7 +424,6 @@
|
|
425
424
|
* `require_2fa_user_type` (string): What type of user is required to use two-factor authentication (when require_2fa is set to `true` for this site)?
|
426
425
|
* `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.
|
427
426
|
* `session` (Session): Current session
|
428
|
-
* `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?)
|
429
427
|
* `sftp_enabled` (boolean): Is SFTP enabled?
|
430
428
|
* `sftp_host_key_type` (string): Sftp Host Key Type
|
431
429
|
* `active_sftp_host_key_id` (int64): Id of the currently selected custom SFTP Host Key
|
@@ -564,7 +562,6 @@ Files::Site.update(
|
|
564
562
|
sftp_user_root_enabled: true,
|
565
563
|
disable_password_reset: true,
|
566
564
|
immutable_files: true,
|
567
|
-
session_pinned_by_ip: true,
|
568
565
|
bundle_not_found_message: "example",
|
569
566
|
bundle_password_required: true,
|
570
567
|
bundle_require_registration: true,
|
@@ -722,7 +719,6 @@ Files::Site.update(
|
|
722
719
|
* `sftp_user_root_enabled` (boolean): Use user FTP roots also for SFTP?
|
723
720
|
* `disable_password_reset` (boolean): Is password reset disabled?
|
724
721
|
* `immutable_files` (boolean): Are files protected from modification?
|
725
|
-
* `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?)
|
726
722
|
* `bundle_not_found_message` (string): Custom error message to show when bundle is not found.
|
727
723
|
* `bundle_password_required` (boolean): Do Bundles require password protection?
|
728
724
|
* `bundle_require_registration` (boolean): Do Bundles require registration?
|
data/lib/files.com/errors.rb
CHANGED
@@ -142,7 +142,6 @@ module Files
|
|
142
142
|
class UserIdWithoutSiteAdminError < NotAuthorizedError; end
|
143
143
|
class WriteAndBundlePermissionRequiredError < NotAuthorizedError; end
|
144
144
|
class WritePermissionRequiredError < NotAuthorizedError; end
|
145
|
-
class ZipDownloadIpMismatchError < NotAuthorizedError; end
|
146
145
|
|
147
146
|
class NotFoundError < APIError; end
|
148
147
|
class ApiKeyNotFoundError < NotFoundError; end
|
@@ -634,11 +634,6 @@ module Files
|
|
634
634
|
@attributes[:session]
|
635
635
|
end
|
636
636
|
|
637
|
-
# boolean - Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
|
638
|
-
def session_pinned_by_ip
|
639
|
-
@attributes[:session_pinned_by_ip]
|
640
|
-
end
|
641
|
-
|
642
637
|
# boolean - Is SFTP enabled?
|
643
638
|
def sftp_enabled
|
644
639
|
@attributes[:sftp_enabled]
|
@@ -935,7 +930,6 @@ module Files
|
|
935
930
|
# sftp_user_root_enabled - boolean - Use user FTP roots also for SFTP?
|
936
931
|
# disable_password_reset - boolean - Is password reset disabled?
|
937
932
|
# immutable_files - boolean - Are files protected from modification?
|
938
|
-
# 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?)
|
939
933
|
# bundle_not_found_message - string - Custom error message to show when bundle is not found.
|
940
934
|
# bundle_password_required - boolean - Do Bundles require password protection?
|
941
935
|
# bundle_require_registration - boolean - Do Bundles require registration?
|
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.177
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|