mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
refs: https://github.com/TryGhost/Toolbox/issues/228 - we are getting rid of the concept of having multiple api versions in a single ghost install - we no longer need versioned routing configs
59 lines
1.2 KiB
JavaScript
59 lines
1.2 KiB
JavaScript
module.exports.QUERY = {
|
|
tag: {
|
|
controller: 'tagsPublic',
|
|
type: 'read',
|
|
resource: 'tags',
|
|
options: {
|
|
slug: '%s',
|
|
visibility: 'public'
|
|
}
|
|
},
|
|
author: {
|
|
controller: 'authorsPublic',
|
|
type: 'read',
|
|
resource: 'authors',
|
|
options: {
|
|
slug: '%s'
|
|
}
|
|
},
|
|
post: {
|
|
controller: 'postsPublic',
|
|
type: 'read',
|
|
resource: 'posts',
|
|
options: {
|
|
slug: '%s'
|
|
}
|
|
},
|
|
page: {
|
|
controller: 'pagesPublic',
|
|
type: 'read',
|
|
resource: 'pages',
|
|
options: {
|
|
slug: '%s'
|
|
}
|
|
},
|
|
preview: {
|
|
controller: 'preview',
|
|
resource: 'preview'
|
|
},
|
|
email: {
|
|
controller: 'emailPost',
|
|
resource: 'email_posts',
|
|
options: {
|
|
slug: '%s'
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports.TAXONOMIES = {
|
|
tag: {
|
|
filter: 'tags:\'%s\'+tags.visibility:public',
|
|
editRedirect: '#/tags/:slug/',
|
|
resource: 'tags'
|
|
},
|
|
author: {
|
|
filter: 'authors:\'%s\'',
|
|
editRedirect: '#/settings/staff/:slug/',
|
|
resource: 'authors'
|
|
}
|
|
};
|