files.com 1.1.149 → 1.1.150
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/site.md +4 -0
- data/lib/files.com/models/site.rb +6 -0
- 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: 05ba4dfda040251805845298b4d16e1c08e463c1783780643fbb2778f03e4c70
|
4
|
+
data.tar.gz: 7eb0dd471806a96dcc029547eb9467b5afc8a70799d97c49de7d2106459ed8b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44f980bec46fcadae38195bcac11a5b1ddb5aeba966c2643514ed44cdf0c84ca402478df67c13f1426f8a93e1829cb08858a2abcacb1ac343863e930c2e373f2
|
7
|
+
data.tar.gz: ab2b25cd6265796e367d2cf9015ccf2d66a8c74214b852bb5b518c9360b4787bb33416d3a0999109310af760c537611e309118feafae9e68469f94822861ff93
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.150
|
data/docs/site.md
CHANGED
@@ -181,6 +181,7 @@
|
|
181
181
|
"sftp_insecure_diffie_hellman": true,
|
182
182
|
"sftp_user_root_enabled": true,
|
183
183
|
"sharing_enabled": true,
|
184
|
+
"show_user_notifications_log_in_link": true,
|
184
185
|
"show_request_access_link": true,
|
185
186
|
"site_footer": "example",
|
186
187
|
"site_header": "example",
|
@@ -414,6 +415,7 @@
|
|
414
415
|
* `sftp_insecure_diffie_hellman` (boolean): If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
|
415
416
|
* `sftp_user_root_enabled` (boolean): Use user FTP roots also for SFTP?
|
416
417
|
* `sharing_enabled` (boolean): Allow bundle creation
|
418
|
+
* `show_user_notifications_log_in_link` (boolean): Show log in link in user notifications?
|
417
419
|
* `show_request_access_link` (boolean): Show request access link for users without access? Currently unused.
|
418
420
|
* `site_footer` (string): Custom site footer text
|
419
421
|
* `site_header` (string): Custom site header text
|
@@ -563,6 +565,7 @@ Files::Site.update(
|
|
563
565
|
sftp_enabled: true,
|
564
566
|
users_can_create_api_keys: true,
|
565
567
|
users_can_create_ssh_keys: true,
|
568
|
+
show_user_notifications_log_in_link: true,
|
566
569
|
sftp_host_key_type: "default",
|
567
570
|
active_sftp_host_key_id: 1,
|
568
571
|
protocol_access_groups_only: true,
|
@@ -714,6 +717,7 @@ Files::Site.update(
|
|
714
717
|
* `sftp_enabled` (boolean): Is SFTP enabled?
|
715
718
|
* `users_can_create_api_keys` (boolean): Allow users to create their own API keys?
|
716
719
|
* `users_can_create_ssh_keys` (boolean): Allow users to create their own SSH keys?
|
720
|
+
* `show_user_notifications_log_in_link` (boolean): Show log in link in user notifications?
|
717
721
|
* `sftp_host_key_type` (string): Sftp Host Key Type
|
718
722
|
* `active_sftp_host_key_id` (int64): Id of the currently selected custom SFTP Host Key
|
719
723
|
* `protocol_access_groups_only` (boolean): If true, protocol access permissions on users will be ignored, and only protocol access permissions set on Groups will be honored. Make sure that your current user is a member of a group with API permission when changing this value to avoid locking yourself out of your site.
|
@@ -644,6 +644,11 @@ module Files
|
|
644
644
|
@attributes[:sharing_enabled]
|
645
645
|
end
|
646
646
|
|
647
|
+
# boolean - Show log in link in user notifications?
|
648
|
+
def show_user_notifications_log_in_link
|
649
|
+
@attributes[:show_user_notifications_log_in_link]
|
650
|
+
end
|
651
|
+
|
647
652
|
# boolean - Show request access link for users without access? Currently unused.
|
648
653
|
def show_request_access_link
|
649
654
|
@attributes[:show_request_access_link]
|
@@ -919,6 +924,7 @@ module Files
|
|
919
924
|
# sftp_enabled - boolean - Is SFTP enabled?
|
920
925
|
# users_can_create_api_keys - boolean - Allow users to create their own API keys?
|
921
926
|
# users_can_create_ssh_keys - boolean - Allow users to create their own SSH keys?
|
927
|
+
# show_user_notifications_log_in_link - boolean - Show log in link in user notifications?
|
922
928
|
# sftp_host_key_type - string - Sftp Host Key Type
|
923
929
|
# active_sftp_host_key_id - int64 - Id of the currently selected custom SFTP Host Key
|
924
930
|
# protocol_access_groups_only - boolean - If true, protocol access permissions on users will be ignored, and only protocol access permissions set on Groups will be honored. Make sure that your current user is a member of a group with API permission when changing this value to avoid locking yourself out of your site.
|
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.150
|
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-10-
|
11
|
+
date: 2024-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|