(ctx context.Context, groupID, userID string)
| 1125 | } |
| 1126 | |
| 1127 | func (c *connection) DeleteUsergroupMemberUser(ctx context.Context, groupID, userID string) error { |
| 1128 | res, err := c.getDB(ctx).ExecContext(ctx, "DELETE FROM usergroups_users WHERE user_id = $1 AND usergroup_id = $2", userID, groupID) |
| 1129 | return checkDeleteRow("usergroup member", res, err) |
| 1130 | } |
| 1131 | |
| 1132 | func (c *connection) DeleteUsergroupsMemberUser(ctx context.Context, orgID, userID string) error { |
| 1133 | _, err := c.getDB(ctx).ExecContext(ctx, ` |
nothing calls this directly
no test coverage detected