Skip to content

Commit

Permalink
Naming fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mj52951 committed Dec 19, 2024
1 parent 619b116 commit 45d5bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/services/dataAccess/domains.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ export class DomainsService {
}

public async findDomains(where: FindOptionsWhere<Domain>): Promise<Domain[]> {
const routes = await this.domainRepository.find({
const domains = await this.domainRepository.find({
where,
order: {
id: "ASC",
},
});
return routes;
return domains;
}
}

0 comments on commit 45d5bdc

Please sign in to comment.