files.com 1.1.696 → 1.1.698
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/partner.md +8 -0
- data/docs/site.md +4 -0
- data/lib/files.com/models/partner.rb +12 -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: 4ee7b1d5e9d0cad6ed845df4aa8f01c42db61e7967fdcefd276df58c9b179d67
|
|
4
|
+
data.tar.gz: 766c88c4704816c33df01359aaad091a3ba422c99b7334c259dba0e38fdf4d65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34a43dba6982100682930e77b8b22ce9b70365456f0f9a63427975388924b3c5cb07158e4ab612b70c1cfe0505c98cc9f85485368265588f988a3315830a5e43
|
|
7
|
+
data.tar.gz: 00cb5badcfe58edea2e9193b4a0191060610680e04a1490e68ba1e9f7209aabaa2578353d1c45413eab6e4dc513e1e574b1fd561dde9939270a11528a31aed30
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.698
|
data/docs/partner.md
CHANGED
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"responsible_group_id": 1,
|
|
26
26
|
"responsible_user_id": 1,
|
|
27
27
|
"root_folder": "/AcmeCorp",
|
|
28
|
+
"show_partner_channel_home_page": true,
|
|
28
29
|
"tags": "example",
|
|
29
30
|
"user_ids": [
|
|
30
31
|
1,
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
* `responsible_group_id` (int64): ID of the Group responsible for this Partner.
|
|
52
53
|
* `responsible_user_id` (int64): ID of the User responsible for this Partner.
|
|
53
54
|
* `root_folder` (string): The root folder path for this Partner.
|
|
55
|
+
* `show_partner_channel_home_page` (boolean): Show Partner users a simplified home page built from this Partner's Channels.
|
|
54
56
|
* `tags` (string): Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
55
57
|
* `user_ids` (array(int64)): Array of User IDs that belong to this Partner.
|
|
56
58
|
|
|
@@ -101,6 +103,7 @@ Files::Partner.create(
|
|
|
101
103
|
partner_channel_template_id: 1,
|
|
102
104
|
responsible_group_id: 1,
|
|
103
105
|
responsible_user_id: 1,
|
|
106
|
+
show_partner_channel_home_page: false,
|
|
104
107
|
tags: "example",
|
|
105
108
|
name: "Acme Corp",
|
|
106
109
|
root_folder: "/AcmeCorp",
|
|
@@ -121,6 +124,7 @@ Files::Partner.create(
|
|
|
121
124
|
* `partner_channel_template_id` (int64): ID of the Partner Channel Template assigned to this Partner.
|
|
122
125
|
* `responsible_group_id` (int64): ID of the Group responsible for this Partner.
|
|
123
126
|
* `responsible_user_id` (int64): ID of the User responsible for this Partner.
|
|
127
|
+
* `show_partner_channel_home_page` (boolean): Show Partner users a simplified home page built from this Partner's Channels.
|
|
124
128
|
* `tags` (string): Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
125
129
|
* `name` (string): Required - The name of the Partner.
|
|
126
130
|
* `root_folder` (string): Required - The root folder path for this Partner.
|
|
@@ -144,6 +148,7 @@ Files::Partner.update(id,
|
|
|
144
148
|
partner_channel_template_id: 1,
|
|
145
149
|
responsible_group_id: 1,
|
|
146
150
|
responsible_user_id: 1,
|
|
151
|
+
show_partner_channel_home_page: false,
|
|
147
152
|
tags: "example",
|
|
148
153
|
name: "Acme Corp",
|
|
149
154
|
root_folder: "/AcmeCorp"
|
|
@@ -164,6 +169,7 @@ Files::Partner.update(id,
|
|
|
164
169
|
* `partner_channel_template_id` (int64): ID of the Partner Channel Template assigned to this Partner.
|
|
165
170
|
* `responsible_group_id` (int64): ID of the Group responsible for this Partner.
|
|
166
171
|
* `responsible_user_id` (int64): ID of the User responsible for this Partner.
|
|
172
|
+
* `show_partner_channel_home_page` (boolean): Show Partner users a simplified home page built from this Partner's Channels.
|
|
167
173
|
* `tags` (string): Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
168
174
|
* `name` (string): The name of the Partner.
|
|
169
175
|
* `root_folder` (string): The root folder path for this Partner.
|
|
@@ -201,6 +207,7 @@ partner.update(
|
|
|
201
207
|
partner_channel_template_id: 1,
|
|
202
208
|
responsible_group_id: 1,
|
|
203
209
|
responsible_user_id: 1,
|
|
210
|
+
show_partner_channel_home_page: false,
|
|
204
211
|
tags: "example",
|
|
205
212
|
name: "Acme Corp",
|
|
206
213
|
root_folder: "/AcmeCorp"
|
|
@@ -221,6 +228,7 @@ partner.update(
|
|
|
221
228
|
* `partner_channel_template_id` (int64): ID of the Partner Channel Template assigned to this Partner.
|
|
222
229
|
* `responsible_group_id` (int64): ID of the Group responsible for this Partner.
|
|
223
230
|
* `responsible_user_id` (int64): ID of the User responsible for this Partner.
|
|
231
|
+
* `show_partner_channel_home_page` (boolean): Show Partner users a simplified home page built from this Partner's Channels.
|
|
224
232
|
* `tags` (string): Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
225
233
|
* `name` (string): The name of the Partner.
|
|
226
234
|
* `root_folder` (string): The root folder path for this Partner.
|
data/docs/site.md
CHANGED
|
@@ -94,6 +94,7 @@
|
|
|
94
94
|
"domain_hsts_header": true,
|
|
95
95
|
"domain_letsencrypt_chain": "example",
|
|
96
96
|
"email": "john.doe@files.com",
|
|
97
|
+
"fedramp": true,
|
|
97
98
|
"ftp_enabled": true,
|
|
98
99
|
"reply_to_email": "jane.doe@files.com",
|
|
99
100
|
"non_sso_groups_allowed": true,
|
|
@@ -434,6 +435,7 @@
|
|
|
434
435
|
* `domain_hsts_header` (boolean): Send HSTS (HTTP Strict Transport Security) header when visitors access the site via a custom domain?
|
|
435
436
|
* `domain_letsencrypt_chain` (string): Letsencrypt chain to use when registering SSL Certificate for domain. No longer used as of 2026.
|
|
436
437
|
* `email` (email): Main email for this site
|
|
438
|
+
* `fedramp` (boolean): Are FedRAMP security restrictions enabled for this site?
|
|
437
439
|
* `ftp_enabled` (boolean): Is FTP enabled?
|
|
438
440
|
* `reply_to_email` (email): Reply-to email for this site
|
|
439
441
|
* `non_sso_groups_allowed` (boolean): If true, groups can be manually created / modified / deleted by Site Admins. Otherwise, groups can only be managed via your SSO provider.
|
|
@@ -631,6 +633,7 @@ Files::Site.update(
|
|
|
631
633
|
sftp_insecure_ciphers: false,
|
|
632
634
|
sftp_insecure_diffie_hellman: false,
|
|
633
635
|
disable_files_certificate_generation: false,
|
|
636
|
+
fedramp: false,
|
|
634
637
|
user_lockout: false,
|
|
635
638
|
user_lockout_tries: 1,
|
|
636
639
|
user_lockout_within: 1,
|
|
@@ -812,6 +815,7 @@ Files::Site.update(
|
|
|
812
815
|
* `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.
|
|
813
816
|
* `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.
|
|
814
817
|
* `disable_files_certificate_generation` (boolean): If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
|
818
|
+
* `fedramp` (boolean): Are FedRAMP security restrictions enabled for this site?
|
|
815
819
|
* `user_lockout` (boolean): Will users be locked out after incorrect login attempts?
|
|
816
820
|
* `user_lockout_tries` (int64): Number of login tries within `user_lockout_within` hours before users are locked out
|
|
817
821
|
* `user_lockout_within` (int64): Number of hours for user lockout window
|
|
@@ -162,6 +162,15 @@ module Files
|
|
|
162
162
|
@attributes[:root_folder] = value
|
|
163
163
|
end
|
|
164
164
|
|
|
165
|
+
# boolean - Show Partner users a simplified home page built from this Partner's Channels.
|
|
166
|
+
def show_partner_channel_home_page
|
|
167
|
+
@attributes[:show_partner_channel_home_page]
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
def show_partner_channel_home_page=(value)
|
|
171
|
+
@attributes[:show_partner_channel_home_page] = value
|
|
172
|
+
end
|
|
173
|
+
|
|
165
174
|
# string - Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
166
175
|
def tags
|
|
167
176
|
@attributes[:tags]
|
|
@@ -192,6 +201,7 @@ module Files
|
|
|
192
201
|
# partner_channel_template_id - int64 - ID of the Partner Channel Template assigned to this Partner.
|
|
193
202
|
# responsible_group_id - int64 - ID of the Group responsible for this Partner.
|
|
194
203
|
# responsible_user_id - int64 - ID of the User responsible for this Partner.
|
|
204
|
+
# show_partner_channel_home_page - boolean - Show Partner users a simplified home page built from this Partner's Channels.
|
|
195
205
|
# tags - string - Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
196
206
|
# name - string - The name of the Partner.
|
|
197
207
|
# root_folder - string - The root folder path for this Partner.
|
|
@@ -288,6 +298,7 @@ module Files
|
|
|
288
298
|
# partner_channel_template_id - int64 - ID of the Partner Channel Template assigned to this Partner.
|
|
289
299
|
# responsible_group_id - int64 - ID of the Group responsible for this Partner.
|
|
290
300
|
# responsible_user_id - int64 - ID of the User responsible for this Partner.
|
|
301
|
+
# show_partner_channel_home_page - boolean - Show Partner users a simplified home page built from this Partner's Channels.
|
|
291
302
|
# tags - string - Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
292
303
|
# name (required) - string - The name of the Partner.
|
|
293
304
|
# root_folder (required) - string - The root folder path for this Partner.
|
|
@@ -322,6 +333,7 @@ module Files
|
|
|
322
333
|
# partner_channel_template_id - int64 - ID of the Partner Channel Template assigned to this Partner.
|
|
323
334
|
# responsible_group_id - int64 - ID of the Group responsible for this Partner.
|
|
324
335
|
# responsible_user_id - int64 - ID of the User responsible for this Partner.
|
|
336
|
+
# show_partner_channel_home_page - boolean - Show Partner users a simplified home page built from this Partner's Channels.
|
|
325
337
|
# tags - string - Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
326
338
|
# name - string - The name of the Partner.
|
|
327
339
|
# root_folder - string - The root folder path for this Partner.
|
|
@@ -381,6 +381,11 @@ module Files
|
|
|
381
381
|
@attributes[:email]
|
|
382
382
|
end
|
|
383
383
|
|
|
384
|
+
# boolean - Are FedRAMP security restrictions enabled for this site?
|
|
385
|
+
def fedramp
|
|
386
|
+
@attributes[:fedramp]
|
|
387
|
+
end
|
|
388
|
+
|
|
384
389
|
# boolean - Is FTP enabled?
|
|
385
390
|
def ftp_enabled
|
|
386
391
|
@attributes[:ftp_enabled]
|
|
@@ -1039,6 +1044,7 @@ module Files
|
|
|
1039
1044
|
# 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.
|
|
1040
1045
|
# 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.
|
|
1041
1046
|
# disable_files_certificate_generation - boolean - If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
|
1047
|
+
# fedramp - boolean - Are FedRAMP security restrictions enabled for this site?
|
|
1042
1048
|
# user_lockout - boolean - Will users be locked out after incorrect login attempts?
|
|
1043
1049
|
# user_lockout_tries - int64 - Number of login tries within `user_lockout_within` hours before users are locked out
|
|
1044
1050
|
# user_lockout_within - int64 - Number of hours for user lockout window
|
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.698
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|