files.com 1.0.27 → 1.0.28

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be4425150c04a95dcfaa31e51e2397568b789617fb8c3227e686d0335ddfe782
4
- data.tar.gz: 2d31bdc1c42e64e498f2e9e5dc5f2ffa5b17edddaa16d6f781b6545ecf9c70c8
3
+ metadata.gz: c3662ad242ba8d52d628208345b8ccf8485a525f92912ea6abe7a0a7035932ed
4
+ data.tar.gz: 5d6a0c4555fe8155fbf3f6e53d76d62e1dd513bed593cd97b91c09c8f2dfc558
5
5
  SHA512:
6
- metadata.gz: 5a942e2896eb7fa3cddffc0729644302a4abc62cb6190d7ce8e6fc44e328ca758b240228526bedc041f45523018c14293b29ef77469b8482e497100610832b2b
7
- data.tar.gz: a65dc7f2e8e2db6a2ef76781a0c7db3828ae66a1592b4d55100d81a8774d979d9d8860b1dc5e4808243cd7da2051d3077a2746ea3a06707a56fed3f3a9b16357
6
+ metadata.gz: a965e23e2734e9ea448f0cfcd248cfbe6d985ba5b0226ba273c192713ae21426366f4ce6550a24fe3aae22f9c206b50912a82bd8fc6b3845717ec74a3b960e31
7
+ data.tar.gz: 21edc0fa760395ed9a98ee444d013e6f52a3ab2644feb1666e45b939687cf340aa292d9b35a05c9c2999d60907d532a07e4c64798a2fd40f9a91af85f6a1e921
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.27
1
+ 1.0.28
data/docs/site.md CHANGED
@@ -319,7 +319,6 @@ Files::Site.update(
319
319
  icon48_delete: true,
320
320
  icon128_delete: true,
321
321
  logo_delete: true,
322
- days_until_2fa_required: 1,
323
322
  disable_2fa_with_delay: true
324
323
  )
325
324
  ```
@@ -418,7 +417,6 @@ Files::Site.update(
418
417
  * `icon128_delete` (boolean): If true, will delete the file stored in icon128
419
418
  * `logo_file` (file):
420
419
  * `logo_delete` (boolean): If true, will delete the file stored in logo
421
- * `days_until_2fa_required` (int64): When enabling 2FA, set this to a delay period in days.
422
420
  * `disable_2fa_with_delay` (boolean): If set to true, we will begin the process of disabling 2FA on this site.
423
421
  * `ldap_password_change` (string): New LDAP password.
424
422
  * `ldap_password_change_confirmation` (string): Confirm new LDAP password.
@@ -632,7 +632,6 @@ module Files
632
632
  # icon128_delete - boolean - If true, will delete the file stored in icon128
633
633
  # logo_file - file
634
634
  # logo_delete - boolean - If true, will delete the file stored in logo
635
- # days_until_2fa_required - integer - When enabling 2FA, set this to a delay period in days.
636
635
  # disable_2fa_with_delay - boolean - If set to true, we will begin the process of disabling 2FA on this site.
637
636
  # ldap_password_change - string - New LDAP password.
638
637
  # ldap_password_change_confirmation - string - Confirm new LDAP password.
@@ -688,7 +687,6 @@ module Files
688
687
  raise InvalidParameterError.new("Bad parameter: ldap_group_exclusion must be an String") if params.dig(:ldap_group_exclusion) and !params.dig(:ldap_group_exclusion).is_a?(String)
689
688
  raise InvalidParameterError.new("Bad parameter: ldap_group_inclusion must be an String") if params.dig(:ldap_group_inclusion) and !params.dig(:ldap_group_inclusion).is_a?(String)
690
689
  raise InvalidParameterError.new("Bad parameter: ldap_base_dn must be an String") if params.dig(:ldap_base_dn) and !params.dig(:ldap_base_dn).is_a?(String)
691
- raise InvalidParameterError.new("Bad parameter: days_until_2fa_required must be an Integer") if params.dig(:days_until_2fa_required) and !params.dig(:days_until_2fa_required).is_a?(Integer)
692
690
  raise InvalidParameterError.new("Bad parameter: ldap_password_change must be an String") if params.dig(:ldap_password_change) and !params.dig(:ldap_password_change).is_a?(String)
693
691
  raise InvalidParameterError.new("Bad parameter: ldap_password_change_confirmation must be an String") if params.dig(:ldap_password_change_confirmation) and !params.dig(:ldap_password_change_confirmation).is_a?(String)
694
692
  raise InvalidParameterError.new("Bad parameter: smtp_password must be an String") if params.dig(:smtp_password) and !params.dig(:smtp_password).is_a?(String)
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.0.27
4
+ version: 1.0.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-11 00:00:00.000000000 Z
11
+ date: 2020-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday