Ghost/ghost/admin/app/router.js

99 lines
3.3 KiB
JavaScript
Raw Normal View History

import EmberRouter from '@ember/routing/router';
import config from 'ghost-admin/config/environment';
import ghostPaths from 'ghost-admin/utils/ghost-paths';
const Router = EmberRouter.extend({
location: config.locationType, // use HTML5 History API instead of hash-tag based URLs
rootURL: ghostPaths().adminRoot // admin interface lives under sub-directory /ghost
});
Router.map(function () {
this.route('home', {path: '/'});
this.route('setup', function () {
this.route('one');
this.route('two');
this.route('three');
});
this.route('signin');
this.route('signout');
this.route('signup', {path: '/signup/:token'});
this.route('reset', {path: '/reset/:token'});
this.route('whatsnew');
this.route('site');
this.route('dashboard');
this.route('launch');
this.route('pro', function () {
this.route('pro-sub', {path: '/*sub'});
});
this.route('posts');
this.route('pages');
this.route('editor', function () {
this.route('new', {path: ':type'});
this.route('edit', {path: ':type/:post_id'});
});
this.route('tags');
this.route('tag.new', {path: '/tags/new'});
this.route('tag', {path: '/tags/:tag_slug'});
this.route('settings');
this.route('settings.general', {path: '/settings/general'});
this.route('settings.membership', {path: '/settings/members'});
this.route('settings.members-email', {path: '/settings/members-email'});
this.route('settings.code-injection', {path: '/settings/code-injection'});
this.route('settings.design', {path: '/settings/design'}, function () {
this.route('advanced');
this.route('change-theme');
});
// this.route('settings.products', {path: '/settings/products'});
// this.route('settings.product.new', {path: '/settings/product/new'});
// this.route('settings.product', {path: '/settings/product/:product_id'});
this.route('settings.theme', {path: '/settings/theme'}, function () {
this.route('uploadtheme');
this.route('install');
});
this.route('settings.navigation', {path: '/settings/navigation'});
this.route('settings.labs', {path: '/settings/labs'});
this.route('integrations', function () {
this.route('new');
});
this.route('integration', {path: '/integrations/:integration_id'}, function () {
this.route('webhooks.new', {path: 'webhooks/new'});
this.route('webhooks.edit', {path: 'webhooks/:webhook_id'});
});
this.route('integrations.slack', {path: '/integrations/slack'});
this.route('integrations.amp', {path: '/integrations/amp'});
this.route('integrations.firstpromoter', {path: '/integrations/firstpromoter'});
this.route('integrations.unsplash', {path: '/integrations/unsplash'});
this.route('integrations.zapier', {path: '/integrations/zapier'});
this.route('staff', function () {
this.route('user', {path: ':user_slug'});
});
this.route('members', function () {
this.route('import');
});
this.route('member.new', {path: '/members/new'});
this.route('member', {path: '/members/:member_id'});
this.route('offers');
this.route('offer');
this.route('error404', {path: '/*path'});
2021-02-05 15:48:38 +03:00
2021-02-05 16:00:51 +03:00
this.route('designsandbox');
});
export default Router;