Replaced config routeKeyword with hardcoded one (#1004)

refs TryGhost/Ghost#9561

- used the hardcoded routeKeyword for `preview`
- removed `routeKeywords` from mirage configurations API fixtures
This commit is contained in:
Aileen Nowak 2018-04-17 16:52:41 +08:00 committed by Kevin Ansfield
parent 6a9bede003
commit ec178590f0
2 changed files with 3 additions and 9 deletions

View File

@ -180,10 +180,11 @@ export default Model.extend(Comparable, ValidationEngine, {
return this.get('ghostPaths.url').join(blogUrl, postUrl);
}),
previewUrl: computed('uuid', 'ghostPaths.url', 'config.{blogUrl,routeKeywords.preview}', function () {
previewUrl: computed('uuid', 'ghostPaths.url', 'config.blogUrl', function () {
let blogUrl = this.get('config.blogUrl');
let uuid = this.get('uuid');
let previewKeyword = this.get('config.routeKeywords.preview');
// routeKeywords.preview: 'p'
let previewKeyword = 'p';
// New posts don't have a preview
if (!uuid) {
return '';

View File

@ -6,12 +6,5 @@ export default [{
fileStorage: 'true',
internalTags: 'false',
publicAPI: 'false',
routeKeywords: {
tag: 'tag',
author: 'author',
page: 'page',
preview: 'p',
private: 'private'
},
useGravatar: 'true'
}];