Remove ordering from findAll method in EdificioService

This commit is contained in:
miguel
2025-06-04 11:10:49 -06:00
parent 5bae4d1a9e
commit 799219f62a
+1 -5
View File
@@ -11,10 +11,6 @@ export class EdificioService {
) {}
async findAll(): Promise<Edificio[]> {
return this.categoriaRepository.find({
order: {
profesores: 'ASC',
}
});
return this.categoriaRepository.find();
}
}