mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
716a09a452
- Added file upload component - Added import client logic - Added e-mail sending client logic - Added settings model
7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
var DebugRoute = Ember.Route.extend({
|
|
beforeModel: function () {
|
|
this.transitionTo('settings.debug');
|
|
}
|
|
});
|
|
|
|
export default DebugRoute;
|