Google Summer of Code 2019 Work Report
Field | Details |
---|---|
Student | Shreyansh Dwivedi |
Github | @shreyanshdwivedi |
Field | Details |
---|---|
Student | Shreyansh Dwivedi |
Github | @shreyanshdwivedi |
// app/components/account/danger-zone.js | |
isUserDeletable: computed('data.events', 'data.orders', function() { | |
if (this.get('data.events').length || this.get('data.orders').length) { | |
return false; | |
} | |
return true; | |
}) |