@@ -182,13 +182,10 @@ type LDAP interface {
182182 CreateGroup (context.Context , string , url.Values ) (* ldapschema.Object , error ) // Create a group with attributes
183183 DeleteGroup (context.Context , string ) (* ldapschema.Object , error ) // Delete a group
184184 // UpdateGroup(context.Context, string, url.Values) (*ldapschema.Object, error) // Update a group with attributes
185+ // AddGroupUser(context.Context, string, string) (*ldapschema.Object, error) // Add a user to a group
186+ // RemoveGroupUser(context.Context, string, string) (*ldapschema.Object, error) // Remove a user from a group
185187
186- /*
187- AddGroupUser(context.Context, string, string) (*ldapschema.Object, error) // Add a user to a group
188- RemoveGroupUser(context.Context, string, string) (*ldapschema.Object, error) // Remove a user from a group
189-
190- // Auth
191- Bind(context.Context, string, string) (*ldapschema.Object, error) // Check credentials
192- ChangePassword(context.Context, string, string, *string) (*ldapschema.Object, error) // Change password for a user, and return the user object
193- */
188+ // Auth
189+ Bind (context.Context , string , string ) (* ldapschema.Object , error ) // Check credentials
190+ ChangePassword (context.Context , string , string , * string ) (* ldapschema.Object , error ) // Change password for a user, and return the user object
194191}
0 commit comments