files.com 1.0.116 → 1.0.117
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
- 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: 4dfd01f698ed7afe6f7b79688849ad1bbef1b09e90f79958a7155a1cf7ba9886
|
|
4
|
+
data.tar.gz: 83b97f80fee76337c975ff30b8ae1a924b8ff05ad154dd6c6c1370c1bdc6ff3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53fac01474e35cb09b3b78f15c431df3ad12ef383c5239a98086047e2846f43753dbd78bf14a207237ddf4478868ab64995b18c73d073ca071b091d5baa8f08e
|
|
7
|
+
data.tar.gz: 80b77b5db4884725bae52210a3bc233dad7a010484770c23fcdbc188aefb74a93cbca959b3765bfe5bc32297456ef97bdad33f2f3eca1fa39e0584d59967ca01
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.117
|
data/docs/sso_strategy.md
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"provision_group_exclusion": "Employees",
|
|
30
30
|
"provision_group_inclusion": "Employees",
|
|
31
31
|
"provision_group_required": "",
|
|
32
|
+
"provision_site_admin_groups": "Employees",
|
|
32
33
|
"provision_attachments_permission": true,
|
|
33
34
|
"provision_dav_permission": true,
|
|
34
35
|
"provision_ftp_permission": true,
|
|
@@ -71,6 +72,7 @@
|
|
|
71
72
|
* `provision_group_exclusion` (string): Comma-separated list of group names for groups (with optional wildcards) that will be excluded from auto-provisioning.
|
|
72
73
|
* `provision_group_inclusion` (string): Comma-separated list of group names for groups (with optional wildcards) that will be auto-provisioned.
|
|
73
74
|
* `provision_group_required` (string): Comma or newline separated list of group names (with optional wildcards) to require membership for user provisioning.
|
|
75
|
+
* `provision_site_admin_groups` (string): Comma-separated list of group names whose members will be created as Site Admins.
|
|
74
76
|
* `provision_attachments_permission` (boolean): Auto-provisioned users get Sharing permission?
|
|
75
77
|
* `provision_dav_permission` (boolean): Auto-provisioned users get WebDAV permission?
|
|
76
78
|
* `provision_ftp_permission` (boolean): Auto-provisioned users get FTP permission?
|
|
@@ -124,6 +124,11 @@ module Files
|
|
|
124
124
|
@attributes[:provision_group_required]
|
|
125
125
|
end
|
|
126
126
|
|
|
127
|
+
# string - Comma-separated list of group names whose members will be created as Site Admins.
|
|
128
|
+
def provision_site_admin_groups
|
|
129
|
+
@attributes[:provision_site_admin_groups]
|
|
130
|
+
end
|
|
131
|
+
|
|
127
132
|
# boolean - Auto-provisioned users get Sharing permission?
|
|
128
133
|
def provision_attachments_permission
|
|
129
134
|
@attributes[:provision_attachments_permission]
|
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.
|
|
4
|
+
version: 1.0.117
|
|
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-09-
|
|
11
|
+
date: 2020-09-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|