Remove delete suer from store interface (#53726)

This commit is contained in:
idafurjes
2022-08-15 13:56:16 +02:00
committed by GitHub
parent 1c0ab501aa
commit dfc75b1114
4 changed files with 4 additions and 9 deletions
@@ -170,11 +170,6 @@ func (m *SQLStoreMock) BatchDisableUsers(ctx context.Context, cmd *models.BatchD
return m.ExpectedError
}
func (m *SQLStoreMock) DeleteUser(ctx context.Context, cmd *models.DeleteUserCommand) error {
m.LatestUserId = cmd.UserId
return m.ExpectedError
}
func (m *SQLStoreMock) UpdateUserPermissions(userID int64, isAdmin bool) error {
return m.ExpectedError
}