files.com 1.1.345 → 1.1.346
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/partner.md +6 -0
- data/lib/files.com/models/partner.rb +9 -0
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 94e069e6ebe8b5176ec1d1d582cadae4f52dc1351cd2c4d9d9aef44483f071fc
|
|
4
|
+
data.tar.gz: f4fcb1e1c836b79dd445e2daebbcd43d221b28d796d5a1f22597294fa20de05c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31f557168c041fe81c0fdbe13423ef493402cee24cdd0d0cc3d9414ddd38155cf9f0725f7f0cf079d6bf992cc4fee3e8bf7d4e80aa6dd42665e0f0171915cf75
|
|
7
|
+
data.tar.gz: 8eb46e73c73f68ea485547e31e6a8c44c587527c88756a3c7880f5f207fcd04214aa3ae97d5db0d97f475ea75c062c29d6d0c8ed037cf8ddd117d75526d69252
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.346
|
data/docs/partner.md
CHANGED
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
"id": 1,
|
|
12
12
|
"name": "Acme Corp",
|
|
13
13
|
"notes": "This is a note about the partner.",
|
|
14
|
+
"partner_admin_ids": [
|
|
15
|
+
1,
|
|
16
|
+
2,
|
|
17
|
+
3
|
|
18
|
+
],
|
|
14
19
|
"root_folder": "/AcmeCorp",
|
|
15
20
|
"tags": "example",
|
|
16
21
|
"user_ids": [
|
|
@@ -28,6 +33,7 @@
|
|
|
28
33
|
* `id` (int64): The unique ID of the Partner.
|
|
29
34
|
* `name` (string): The name of the Partner.
|
|
30
35
|
* `notes` (string): Notes about this Partner.
|
|
36
|
+
* `partner_admin_ids` (array(int64)): Array of User IDs that are Partner Admins for this Partner.
|
|
31
37
|
* `root_folder` (string): The root folder path for this Partner.
|
|
32
38
|
* `tags` (string): Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
|
|
33
39
|
* `user_ids` (array(int64)): Array of User IDs that belong to this Partner.
|
|
@@ -72,6 +72,15 @@ module Files
|
|
|
72
72
|
@attributes[:notes] = value
|
|
73
73
|
end
|
|
74
74
|
|
|
75
|
+
# array(int64) - Array of User IDs that are Partner Admins for this Partner.
|
|
76
|
+
def partner_admin_ids
|
|
77
|
+
@attributes[:partner_admin_ids]
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def partner_admin_ids=(value)
|
|
81
|
+
@attributes[:partner_admin_ids] = value
|
|
82
|
+
end
|
|
83
|
+
|
|
75
84
|
# string - The root folder path for this Partner.
|
|
76
85
|
def root_folder
|
|
77
86
|
@attributes[:root_folder]
|
data/lib/files.com/version.rb
CHANGED