Skip to content

Commit ffd6146

Browse files
committed
Updated
1 parent a83d273 commit ffd6146

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

plugin.go

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)