0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Removed /index from requires

no issue

- this sometimes happen if you move files with your IDE
- e.g. intellij adds /index at the end of the require
- removed 2 places
This commit is contained in:
kirrg001 2018-10-04 17:38:30 +02:00
parent dd151f3713
commit bd42ea33b5
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
const _ = require('lodash'),
Promise = require('bluebird'),
common = require('../../lib/common/index');
common = require('../../lib/common');
/**
* Why and when do we have to fetch `authors` by default?

View file

@ -1,5 +1,5 @@
const common = require('../../../lib/common/index'),
urlService = require('../../url/index');
const common = require('../../../lib/common'),
urlService = require('../../url');
module.exports = function handlePageParam(req, res, next, page) {
// routeKeywords.page: 'page'