mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
bug 7359: search for removed accounts also while composing usage records response
status 7359: resolved fixed
This commit is contained in:
parent
494a46a10f
commit
c11b8612cd
@ -304,6 +304,10 @@ public class ApiDBUtils {
|
||||
public static Account findAccountById(Long accountId) {
|
||||
return _accountDao.findById(accountId);
|
||||
}
|
||||
|
||||
public static Account findAccountByIdIncludingRemoved(Long accountId) {
|
||||
return _accountDao.findByIdIncludingRemoved(accountId);
|
||||
}
|
||||
|
||||
public static Account findAccountByNameDomain(String accountName, Long domainId) {
|
||||
return _accountDao.findActiveAccount(accountName, domainId);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user