feat: implement support plan upgrade functionality with invoice creation
This commit is contained in:
@@ -30,7 +30,7 @@ export class SupportPlanRepository extends Repository<SupportPlan> {
|
||||
}
|
||||
|
||||
async getSupportPlansListUser() {
|
||||
return this.find({ where: { isActive: true, deletedAt: IsNull() }, relations: { features: true } });
|
||||
return this.find({ where: { isActive: true, deletedAt: IsNull() }, order: { price: "ASC" }, relations: { features: true } });
|
||||
}
|
||||
//***************************************** */
|
||||
async getSupportPlanById(id: string) {
|
||||
|
||||
Reference in New Issue
Block a user