files.com 1.1.2 → 1.1.4

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: f3f6cd255121303536a1030f165b65187d5c7fe0c8929c2e485454dfd9219f65
4
- data.tar.gz: 774928f816cf730ae1c71aa7e1d607d0fe7ef337eda8a2db2f30f5ec61336dd7
3
+ metadata.gz: cc12dc51a718f7038296a0977a646b081b3c94ecb3607a63a991a17b55ed6055
4
+ data.tar.gz: 1b1dd7732ddb9b1afb7040e6b224be756cd5726e74a8d7c95dfc1d13be164d81
5
5
  SHA512:
6
- metadata.gz: f33416b638e363f4678b8ed6aa96fc5a1dce793b7fdba4140c79456a7c3f59ac90e2495757cc4124e540f38739bd09774c2ed4716ed6463e5a13b4017b581a99
7
- data.tar.gz: 689b562c376773366809ee589849855bea853814d5259cc8e759cf358cae85af4c20414e945236fc828d6584d44274e925bc8ab106e450733a8d19bc2e1762e9
6
+ metadata.gz: bbc0e7a34b1eff8583435a7f8d98a05caf569de77bb1053704662eb5b5dffc69c7e095aca3848cb0a544d55637bc2da63abb176714e603bcf7816f23b4162ad2
7
+ data.tar.gz: 9529b09d0e24ab182b6aef0bc5c0de3c8b3a0f679ee4c88a11ea0a2436adbcc9ccf07c6732261f5ecf6acd963f52c6af5cb3515d8f89c179d200e5d0f7e17bac
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.2
1
+ 1.1.4
data/docs/site.md CHANGED
@@ -12,6 +12,7 @@
12
12
  "allowed_2fa_method_yubi": true,
13
13
  "allowed_2fa_method_bypass_for_ftp_sftp_dav": true,
14
14
  "admin_user_id": 1,
15
+ "admins_bypass_locked_subfolders": true,
15
16
  "allow_bundle_names": true,
16
17
  "allowed_countries": "US,DE",
17
18
  "allowed_ips": "example",
@@ -236,6 +237,7 @@
236
237
  * `allowed_2fa_method_yubi` (boolean): Is yubikey two factor authentication allowed?
237
238
  * `allowed_2fa_method_bypass_for_ftp_sftp_dav` (boolean): Are users allowed to configure their two factor authentication to be bypassed for FTP/SFTP/WebDAV?
238
239
  * `admin_user_id` (int64): User ID for the main site administrator
240
+ * `admins_bypass_locked_subfolders` (boolean): Allow admins to bypass the locked subfolders setting.
239
241
  * `allow_bundle_names` (boolean): Are manual Bundle names allowed?
240
242
  * `allowed_countries` (string): Comma seperated list of allowed Country codes
241
243
  * `allowed_ips` (string): List of allowed IP addresses
@@ -488,6 +490,7 @@ Files::Site.update(
488
490
  group_admins_can_set_user_password: true,
489
491
  bundle_recipient_blacklist_free_email_domains: true,
490
492
  bundle_recipient_blacklist_domains: ["example"],
493
+ admins_bypass_locked_subfolders: true,
491
494
  allowed_2fa_method_sms: true,
492
495
  allowed_2fa_method_u2f: true,
493
496
  allowed_2fa_method_totp: true,
@@ -625,6 +628,7 @@ Files::Site.update(
625
628
  * `group_admins_can_set_user_password` (boolean): Allow group admins set password authentication method
626
629
  * `bundle_recipient_blacklist_free_email_domains` (boolean): Disallow free email domains for Bundle/Inbox recipients?
627
630
  * `bundle_recipient_blacklist_domains` (array(string)): List of email domains to disallow when entering a Bundle/Inbox recipients
631
+ * `admins_bypass_locked_subfolders` (boolean): Allow admins to bypass the locked subfolders setting.
628
632
  * `allowed_2fa_method_sms` (boolean): Is SMS two factor authentication allowed?
629
633
  * `allowed_2fa_method_u2f` (boolean): Is U2F two factor authentication allowed?
630
634
  * `allowed_2fa_method_totp` (boolean): Is TOTP two factor authentication allowed?
data/docs/sso_strategy.md CHANGED
@@ -9,6 +9,7 @@
9
9
  "label": "My Corporate SSO Provider",
10
10
  "logo_url": "https://mysite.files.com/.../logo.png",
11
11
  "id": 1,
12
+ "user_count": 1,
12
13
  "saml_provider_cert_fingerprint": "example",
13
14
  "saml_provider_issuer_url": "example",
14
15
  "saml_provider_metadata_content": "example",
@@ -56,6 +57,7 @@
56
57
  * `label` (string): Custom label for the SSO provider on the login page.
57
58
  * `logo_url` (string): URL holding a custom logo for the SSO provider on the login page.
58
59
  * `id` (int64): ID
60
+ * `user_count` (int64): Count of users with this SSO Strategy
59
61
  * `saml_provider_cert_fingerprint` (string): Identity provider sha256 cert fingerprint if saml_provider_metadata_url is not available.
60
62
  * `saml_provider_issuer_url` (string): Identity provider issuer url
61
63
  * `saml_provider_metadata_content` (string): Custom identity provider metadata
@@ -49,6 +49,11 @@ module Files
49
49
  @attributes[:admin_user_id]
50
50
  end
51
51
 
52
+ # boolean - Allow admins to bypass the locked subfolders setting.
53
+ def admins_bypass_locked_subfolders
54
+ @attributes[:admins_bypass_locked_subfolders]
55
+ end
56
+
52
57
  # boolean - Are manual Bundle names allowed?
53
58
  def allow_bundle_names
54
59
  @attributes[:allow_bundle_names]
@@ -850,6 +855,7 @@ module Files
850
855
  # group_admins_can_set_user_password - boolean - Allow group admins set password authentication method
851
856
  # bundle_recipient_blacklist_free_email_domains - boolean - Disallow free email domains for Bundle/Inbox recipients?
852
857
  # bundle_recipient_blacklist_domains - array(string) - List of email domains to disallow when entering a Bundle/Inbox recipients
858
+ # admins_bypass_locked_subfolders - boolean - Allow admins to bypass the locked subfolders setting.
853
859
  # allowed_2fa_method_sms - boolean - Is SMS two factor authentication allowed?
854
860
  # allowed_2fa_method_u2f - boolean - Is U2F two factor authentication allowed?
855
861
  # allowed_2fa_method_totp - boolean - Is TOTP two factor authentication allowed?
@@ -34,6 +34,11 @@ module Files
34
34
  @attributes[:id]
35
35
  end
36
36
 
37
+ # int64 - Count of users with this SSO Strategy
38
+ def user_count
39
+ @attributes[:user_count]
40
+ end
41
+
37
42
  # string - Identity provider sha256 cert fingerprint if saml_provider_metadata_url is not available.
38
43
  def saml_provider_cert_fingerprint
39
44
  @attributes[:saml_provider_cert_fingerprint]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.2"
4
+ VERSION = "1.1.4"
5
5
  end
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.2
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-13 00:00:00.000000000 Z
11
+ date: 2023-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable