mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
72156c7f89
fixes #3072 - Change router to handle /ember/setup/ - Adjust doSignup to also handle setup - Adjust tests and add new where necessary - Add setup controller, setup validation, setup route - Adjust casper emberSetup to handle new setup
9 lines
244 B
JavaScript
9 lines
244 B
JavaScript
import styleBody from 'ghost/mixins/style-body';
|
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
|
|
|
var SetupRoute = Ember.Route.extend(styleBody, loadingIndicator, {
|
|
classNames: ['ghost-setup']
|
|
});
|
|
|
|
export default SetupRoute;
|