fix directories.

This commit is contained in:
a.bouhuolia
2021-04-03 21:16:07 +02:00
parent df1ecc6d25
commit 198b2125e3
4 changed files with 6 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
import Agenda from 'agenda';
import WelcomeEmailJob from 'jobs/WelcomeEmail';
import WelcomeEmailJob from 'jobs/welcomeEmail';
import WelcomeSMSJob from 'jobs/WelcomeSMS';
import ResetPasswordMailJob from 'jobs/ResetPasswordMail';
import ComputeItemCost from 'jobs/ComputeItemCost';

View File

@@ -1,5 +1,5 @@
import SMSClient from 'services/SMSClient';
import EasySMSGateway from 'services/SMSClient/EasySMSClient';
import EasySMSGateway from 'services/SMSClient/EasySmsClient';
export default () => {
const easySmsGateway = new EasySMSGateway();

View File

@@ -67,8 +67,8 @@ export default class PlanSubscription extends mixin(SystemModel) {
* Relations mappings.
*/
static get relationMappings() {
const Tenant = require('system/Models/Tenant');
const Plan = require('system/Models/Subscriptions/Plan');
const Tenant = require('system/models/Tenant');
const Plan = require('system/models/Subscriptions/Plan');
return {
/**