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/species/show/controller.js
Matthew Dillon 6f0f9d8ea2 Edit species
2015-07-07 16:55:41 -08:00

14 lines
319 B
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
userCanEdit: function() {
let meta = this.store.metadataFor('species');
let id = this.get('model.id');
if (meta.canEdit.indexOf( +id ) === -1) {
return false
}
return true;
}.property('model.isLoaded').readOnly(),
});