Cleanup controller, templates and service

This commit is contained in:
2018-04-08 14:06:16 +02:00
parent 6cfd4240de
commit 28f7466595
6 changed files with 93 additions and 111 deletions
+6 -6
View File
@@ -1,4 +1,5 @@
import EmberObject from 'ember-object';
import { alias } from 'ember-computed';
export default EmberObject.extend({
// Contract
@@ -11,6 +12,9 @@ export default EmberObject.extend({
executed: null,
ipfsHash: null,
// Shortcuts
isExecuted: alias('executed'),
// IPFS
kind: null,
description: null,
@@ -18,10 +22,6 @@ export default EmberObject.extend({
url: null,
ipfsData: '',
// Deprecated
recipientAddress: null,
recipientName: null,
recipientProfile: null,
// TODO: add contributor relation
// Relationships
contributor: null,
});