Ghost/core/server/services/routing/assets/resource-config.js

54 lines
1.0 KiB
JavaScript
Raw Normal View History

/* eslint-disable */
module.exports.QUERY = {
tag: {
alias: 'tags',
type: 'read',
resource: 'tags',
options: {
slug: '%s',
visibility: 'public'
}
},
author: {
alias: 'users',
type: 'read',
resource: 'users',
options: {
slug: '%s',
visibility: 'public'
}
},
post: {
alias: 'posts',
type: 'read',
resource: 'posts',
options: {
slug: '%s',
status: 'published',
page: 0
}
},
page: {
alias: 'pages',
type: 'read',
resource: 'posts',
options: {
slug: '%s',
status: 'published',
page: 1
}
}
};
module.exports.TAXONOMIES = {
tag: {
filter: 'tags:\'%s\'+tags.visibility:public',
editRedirect: '#/settings/tags/:slug/'
},
author: {
filter: 'authors:\'%s\'',
editRedirect: '#/team/:slug/'
}
};
/* eslint-enable */