Change password

Fixes #14
This commit is contained in:
Matthew Dillon 2015-10-12 20:43:36 -07:00
parent d353dc6e75
commit 4a54813440
6 changed files with 90 additions and 9 deletions

View file

@ -0,0 +1,7 @@
import Ember from 'ember';
export default Ember.Controller.extend({
isUser: Ember.computed('model.id', 'session.currentUser.id', function() {
return this.get('model.id') === this.get('session.currentUser.id');
}),
});