Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
066eef4ef8
The "Transfer" UI has been upgraded into a full wizard manager, adding additional import/export features and bulk-delete functionality
25 Zeilen
1 KiB
JavaScript
25 Zeilen
1 KiB
JavaScript
export default {
|
|
resource: 'admin',
|
|
map() {
|
|
this.route('adminWizards', { path: '/wizards', resetNamespace: true }, function() {
|
|
|
|
this.route('adminWizardsWizard', { path: '/wizard/', resetNamespace: true }, function() {
|
|
this.route('adminWizardsWizardShow', { path: '/:wizardId/', resetNamespace: true });
|
|
});
|
|
|
|
this.route('adminWizardsCustomFields', { path: '/custom-fields', resetNamespace: true });
|
|
|
|
this.route('adminWizardsSubmissions', { path: '/submissions', resetNamespace: true }, function() {
|
|
this.route('adminWizardsSubmissionsShow', { path: '/:wizardId/', resetNamespace: true });
|
|
})
|
|
|
|
this.route('adminWizardsApi', { path: '/api', resetNamespace: true }, function() {
|
|
this.route('adminWizardsApiShow', { path: '/:name', resetNamespace: true });
|
|
});
|
|
|
|
this.route('adminWizardsLogs', { path: '/logs', resetNamespace: true });
|
|
|
|
this.route('adminWizardsManager', { path: '/manager', resetNamespace: true });
|
|
});
|
|
}
|
|
};
|