aa28a14d04
No vetos yet, and only for collections (not creation). closes #20
21 lines
437 B
JavaScript
21 lines
437 B
JavaScript
import Component from '@ember/component';
|
|
|
|
export default Component.extend({
|
|
|
|
tagName: 'ul',
|
|
classNames: ['contribution-list'],
|
|
|
|
// actions: {
|
|
//
|
|
// veto (contributionId) {
|
|
// if (this.contractInteractionEnabled) {
|
|
// this.vetoContribution(contributionId);
|
|
// } else {
|
|
// window.alert('Only members can veto contributions. Please ask someone to set you up.');
|
|
// }
|
|
// }
|
|
//
|
|
// }
|
|
|
|
});
|