23 lines
634 B
JavaScript
23 lines
634 B
JavaScript
import Ember from 'ember';
|
|
import UnauthenticatedRouteMixin from 'simple-auth/mixins/unauthenticated-route-mixin';
|
|
|
|
export default Ember.Route.extend(UnauthenticatedRouteMixin, {
|
|
model: function() {
|
|
return Ember.RSVP.hash({
|
|
user: this.store.createRecord('user'),
|
|
});
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
controller.setProperties(model);
|
|
},
|
|
|
|
actions: {
|
|
success: function() {
|
|
this.transitionTo('login').then(() => {
|
|
this.get('flashMessages').information(`You have successfully signed up.
|
|
Please check your email for further instructions.`);
|
|
});
|
|
}
|
|
},
|
|
});
|