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:
parent
dd151f3713
commit
bd42ea33b5
2 changed files with 3 additions and 3 deletions
|
@ -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?
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue