mirror of
https://github.com/discourse/discourse.git
synced 2025-02-14 05:52:45 +08:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
Discourse.SignupRoute = Discourse.Route.extend({
|
|
beforeModel: function() {
|
|
this.transitionTo('discovery.latest').then(function(e) {
|
|
Ember.run.next(function() {
|
|
e.send('showCreateAccount');
|
|
});
|
|
});
|
|
}
|
|
});
|