This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/users/show/controller.js
Matthew Dillon 4a54813440 Change password
Fixes #14
2015-10-12 20:43:36 -07:00

7 lines
227 B
JavaScript

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');
}),
});