Clean up verification
This commit is contained in:
parent
6ce2fbe83b
commit
e91a283680
6 changed files with 39 additions and 13 deletions
|
@ -1,4 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
<h3>Failure</h3>
|
|
|
@ -1,4 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
<h3>Success</h3>
|
|
|
@ -1,4 +1,42 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
export default Ember.Route.extend({
|
||||||
|
apiURL: function() {
|
||||||
|
return this.get('globals.apiURL');
|
||||||
|
}.property(),
|
||||||
|
|
||||||
|
genus: function() {
|
||||||
|
return this.get('globals.genus');
|
||||||
|
}.property(),
|
||||||
|
|
||||||
|
model: function(params) {
|
||||||
|
let url = this.get('apiURL') + '/api/' + this.get('genus') + '/users/verify/' + params.nonce;
|
||||||
|
return new Ember.RSVP.Promise(function(resolve, reject) {
|
||||||
|
let options = {
|
||||||
|
success: function(data){
|
||||||
|
resolve(data);
|
||||||
|
},
|
||||||
|
error: function(jqXHR, status, error){
|
||||||
|
reject(jqXHR, status, error);
|
||||||
|
},
|
||||||
|
dataType: 'text json',
|
||||||
|
};
|
||||||
|
Ember.$.ajax(url, options);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
afterModel: function(model/*, transition*/) {
|
||||||
|
this.get('flashMessages').success(model.msg);
|
||||||
|
this.transitionTo('login');
|
||||||
|
},
|
||||||
|
|
||||||
|
actions: {
|
||||||
|
error: function(error/*, transition*/) {
|
||||||
|
let err = Ember.$.parseJSON(error.responseText);
|
||||||
|
this.get('flashMessages').error(err.error);
|
||||||
|
this.transitionTo('login');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,9 +10,7 @@ Router.map(function() {
|
||||||
|
|
||||||
this.route('users', function() {
|
this.route('users', function() {
|
||||||
this.route('new', function() {
|
this.route('new', function() {
|
||||||
this.route('fail');
|
this.route('verify', { path: 'verify/:nonce' });
|
||||||
this.route('success');
|
|
||||||
this.route('verify', { path: ':nonce' });
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Reference in a new issue