mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
import Ember from 'ember';
|
|
var DebugRoute = Ember.Route.extend({
|
|
beforeModel: function () {
|
|
this.transitionTo('settings.labs');
|
|
}
|
|
});
|
|
|
|
export default DebugRoute;
|