files.com 1.1.3 → 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 +4 -4
- data/_VERSION +1 -1
- data/docs/sso_strategy.md +2 -0
- data/lib/files.com/models/sso_strategy.rb +5 -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: cc12dc51a718f7038296a0977a646b081b3c94ecb3607a63a991a17b55ed6055
|
|
4
|
+
data.tar.gz: 1b1dd7732ddb9b1afb7040e6b224be756cd5726e74a8d7c95dfc1d13be164d81
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbc0e7a34b1eff8583435a7f8d98a05caf569de77bb1053704662eb5b5dffc69c7e095aca3848cb0a544d55637bc2da63abb176714e603bcf7816f23b4162ad2
|
|
7
|
+
data.tar.gz: 9529b09d0e24ab182b6aef0bc5c0de3c8b3a0f679ee4c88a11ea0a2436adbcc9ccf07c6732261f5ecf6acd963f52c6af5cb3515d8f89c179d200e5d0f7e17bac
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.4
|
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
|
|
@@ -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]
|
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.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-
|
|
11
|
+
date: 2023-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|