feat(server): order tax rates by name

This commit is contained in:
Ahmed Bouhuolia
2023-09-18 18:57:54 +02:00
parent df823c0bfe
commit 1b4b656419
3 changed files with 6 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ export default class TaxRate extends mixin(TenantModel, [ModelSearchable]) {
* Timestamps columns.
*/
get timestamps() {
return ['created_at', 'updated_at'];
return ['createdAt', 'updatedAt'];
}
/**