mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
fix directories.
This commit is contained in:
1
server/.gitignore
vendored
1
server/.gitignore
vendored
@@ -4,3 +4,4 @@
|
|||||||
package-lock.json
|
package-lock.json
|
||||||
stdout.log
|
stdout.log
|
||||||
/dist
|
/dist
|
||||||
|
/build
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import Agenda from 'agenda';
|
import Agenda from 'agenda';
|
||||||
import WelcomeEmailJob from 'jobs/WelcomeEmail';
|
import WelcomeEmailJob from 'jobs/welcomeEmail';
|
||||||
import WelcomeSMSJob from 'jobs/WelcomeSMS';
|
import WelcomeSMSJob from 'jobs/WelcomeSMS';
|
||||||
import ResetPasswordMailJob from 'jobs/ResetPasswordMail';
|
import ResetPasswordMailJob from 'jobs/ResetPasswordMail';
|
||||||
import ComputeItemCost from 'jobs/ComputeItemCost';
|
import ComputeItemCost from 'jobs/ComputeItemCost';
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import SMSClient from 'services/SMSClient';
|
import SMSClient from 'services/SMSClient';
|
||||||
import EasySMSGateway from 'services/SMSClient/EasySMSClient';
|
import EasySMSGateway from 'services/SMSClient/EasySmsClient';
|
||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
const easySmsGateway = new EasySMSGateway();
|
const easySmsGateway = new EasySMSGateway();
|
||||||
|
|||||||
@@ -67,8 +67,8 @@ export default class PlanSubscription extends mixin(SystemModel) {
|
|||||||
* Relations mappings.
|
* Relations mappings.
|
||||||
*/
|
*/
|
||||||
static get relationMappings() {
|
static get relationMappings() {
|
||||||
const Tenant = require('system/Models/Tenant');
|
const Tenant = require('system/models/Tenant');
|
||||||
const Plan = require('system/Models/Subscriptions/Plan');
|
const Plan = require('system/models/Subscriptions/Plan');
|
||||||
|
|
||||||
return {
|
return {
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user