File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,11 @@ Delete a custom attribute for a group::
126
126
# or
127
127
group.customattributes.delete(attr_key)
128
128
129
+ Search groups by custom attribute::
130
+
131
+ group.customattributes.set('role': 'admin')
132
+ gl.groups.list(custom_attributes={'role': 'admin'})
133
+
129
134
Group members
130
135
=============
131
136
Original file line number Diff line number Diff line change @@ -207,6 +207,11 @@ Delete a custom attribute for a project::
207
207
# or
208
208
project.customattributes.delete(attr_key)
209
209
210
+ Search projects by custom attribute::
211
+
212
+ project.customattributes.set('type': 'internal')
213
+ gl.projects.list(custom_attributes={'type': 'internal'})
214
+
210
215
Project files
211
216
=============
212
217
Original file line number Diff line number Diff line change @@ -107,6 +107,11 @@ Delete a custom attribute for a user::
107
107
# or
108
108
user.customattributes.delete(attr_key)
109
109
110
+ Search users by custom attribute::
111
+
112
+ user.customattributes.set('role': 'QA')
113
+ gl.users.list(custom_attributes={'role': 'QA'})
114
+
110
115
User impersonation tokens
111
116
=========================
112
117
You can’t perform that action at this time.
0 commit comments