files.com 1.1.216 → 1.1.218
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/remote_server.md +0 -2
- data/docs/sso_strategy.md +2 -0
- data/lib/files.com/models/remote_server.rb +0 -9
- 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: dd0863c53c2bdb4a6ec5c24ea30087cf632638dd8bb05084488b2ab1c1f256f6
|
|
4
|
+
data.tar.gz: 805980a35a7fd5889849ac25545b4ea9454bd0c7108301cb029545a551374417
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee4b6fe5e11fc346c1bf809a057effda62f06c25fd942ab1f7f8cdae0f5b537983e83098cc72a199a4da258e3ee9f03294d5ac1b4124412e03c0a345efd9d999
|
|
7
|
+
data.tar.gz: 747a28afdd216acd5c991572189f41d5b5ab50c509b1692a0c2fb10bdd8592f83c3bd67d4eba7de7782b73843311f51d5fbf2d5d54418241cdd9a614c72402a2
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.218
|
data/docs/remote_server.md
CHANGED
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"rackspace_username": "rackspaceuser",
|
|
33
33
|
"rackspace_region": "dfw",
|
|
34
34
|
"rackspace_container": "my-container",
|
|
35
|
-
"auth_setup_link": "auth/:provider",
|
|
36
35
|
"auth_status": "in_setup",
|
|
37
36
|
"auth_account_name": "me@example.com",
|
|
38
37
|
"one_drive_account_type": "personal",
|
|
@@ -92,7 +91,6 @@
|
|
|
92
91
|
* `rackspace_username` (string): Rackspace username used to login to the Rackspace Cloud Control Panel.
|
|
93
92
|
* `rackspace_region` (string): Three letter airport code for Rackspace region. See https://support.rackspace.com/how-to/about-regions/
|
|
94
93
|
* `rackspace_container` (string): The name of the container (top level directory) where files will sync.
|
|
95
|
-
* `auth_setup_link` (string): Returns link to login with an Oauth provider
|
|
96
94
|
* `auth_status` (string): Either `in_setup` or `complete`
|
|
97
95
|
* `auth_account_name` (string): Describes the authorized account
|
|
98
96
|
* `one_drive_account_type` (string): Either personal or business_other account types
|
data/docs/sso_strategy.md
CHANGED
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"provision_time_zone": "Eastern Time (US & Canada)",
|
|
41
41
|
"provision_company": "ACME Corp.",
|
|
42
42
|
"provision_require_2fa": "always_require",
|
|
43
|
+
"identifier": "",
|
|
43
44
|
"ldap_base_dn": "example",
|
|
44
45
|
"ldap_domain": "mysite.com",
|
|
45
46
|
"enabled": true,
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
* `provision_time_zone` (string): Default time zone for auto provisioned users.
|
|
90
91
|
* `provision_company` (string): Default company for auto provisioned users.
|
|
91
92
|
* `provision_require_2fa` (string): 2FA required setting for auto provisioned users.
|
|
93
|
+
* `identifier` (string): URL-friendly, unique identifier for Azure SAML configuration
|
|
92
94
|
* `ldap_base_dn` (string): Base DN for looking up users in LDAP server
|
|
93
95
|
* `ldap_domain` (string): Domain name that will be appended to LDAP usernames
|
|
94
96
|
* `enabled` (boolean): Is strategy enabled? This may become automatically set to `false` after a high number and duration of failures.
|
|
@@ -261,15 +261,6 @@ module Files
|
|
|
261
261
|
@attributes[:rackspace_container] = value
|
|
262
262
|
end
|
|
263
263
|
|
|
264
|
-
# string - Returns link to login with an Oauth provider
|
|
265
|
-
def auth_setup_link
|
|
266
|
-
@attributes[:auth_setup_link]
|
|
267
|
-
end
|
|
268
|
-
|
|
269
|
-
def auth_setup_link=(value)
|
|
270
|
-
@attributes[:auth_setup_link] = value
|
|
271
|
-
end
|
|
272
|
-
|
|
273
264
|
# string - Either `in_setup` or `complete`
|
|
274
265
|
def auth_status
|
|
275
266
|
@attributes[:auth_status]
|
|
@@ -189,6 +189,11 @@ module Files
|
|
|
189
189
|
@attributes[:provision_require_2fa]
|
|
190
190
|
end
|
|
191
191
|
|
|
192
|
+
# string - URL-friendly, unique identifier for Azure SAML configuration
|
|
193
|
+
def identifier
|
|
194
|
+
@attributes[:identifier]
|
|
195
|
+
end
|
|
196
|
+
|
|
192
197
|
# string - Base DN for looking up users in LDAP server
|
|
193
198
|
def ldap_base_dn
|
|
194
199
|
@attributes[:ldap_base_dn]
|
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.218
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-01-
|
|
11
|
+
date: 2025-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|