Method: Gitlab::Client::Groups#add_ldap_group_links
- Defined in:
- lib/gitlab/client/groups.rb
#add_ldap_group_links(id, commonname, group_access, provider) ⇒ Gitlab::ObjectifiedHash
Add LDAP group link
258 259 260 |
# File 'lib/gitlab/client/groups.rb', line 258 def add_ldap_group_links(id, commonname, group_access, provider) post("/groups/#{url_encode id}/ldap_group_links", body: { cn: commonname, group_access: group_access, provider: provider }) end |