@@ -182,13 +182,10 @@ type LDAP interface {
182
182
CreateGroup (context.Context , string , url.Values ) (* ldapschema.Object , error ) // Create a group with attributes
183
183
DeleteGroup (context.Context , string ) (* ldapschema.Object , error ) // Delete a group
184
184
// 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
185
187
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
194
191
}
0 commit comments