Skip to content

Commit b07ef51

Browse files
committed
fix(api): update locales path
1 parent e0282d6 commit b07ef51

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/controllers/admin-public-talks-controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { validationResult } from 'express-validator';
22
import { publicTalks } from '../classes/PublicTalk.js';
3-
import { LANGUAGE_LIST } from '../locales/langList.js';
3+
import { LANGUAGE_LIST } from '../../locales/langList.js';
44

55
export const getAllPublicTalks = async (req, res, next) => {
66
try {

src/controllers/congregation-controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { validationResult } from 'express-validator';
33
import { users } from '../classes/Users.js';
44
import { congregations } from '../classes/Congregations.js';
55
import { createCongregationAllowedRoles } from '../constant/constant.js';
6-
import { LANGUAGE_LIST } from '../locales/langList.js';
6+
import { LANGUAGE_LIST } from '../../locales/langList.js';
77
import { sendWelcomeCPE } from '../utils/sendEmail.js';
88

99
const isDev = process.env.NODE_ENV === 'development';

src/controllers/congregation-meeting-editor-controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { validationResult } from 'express-validator';
22
import { congregations } from '../classes/Congregations.js';
33
import { publicTalks } from '../classes/PublicTalk.js';
4-
import { LANGUAGE_LIST } from '../locales/langList.js';
4+
import { LANGUAGE_LIST } from '../../locales/langList.js';
55

66
export const getPublicTalks = async (req, res, next) => {
77
try {

0 commit comments

Comments
 (0)