Skip to content

Instantly share code, notes, and snippets.

View shreyanshdwivedi's full-sized avatar
🤓
I may be slow to respond.

Shreyansh Dwivedi shreyanshdwivedi

🤓
I may be slow to respond.
View GitHub Profile
@shreyanshdwivedi
shreyanshdwivedi / GSoC19-work-product.md
Last active September 30, 2019 16:59
GSoC 2019 Work Product | Shreyansh Dwivedi | Open Event | FOSSASIA

Google Summer of Code 2019 Work Report

Field Details
Student Shreyansh Dwivedi
Github @shreyanshdwivedi
@shreyanshdwivedi
shreyanshdwivedi / openDeleteUserModal.hbs
Created June 18, 2019 11:18
Open Event: Triggers the action to open delete-user-modal
{{!-- app/templates/components/account/danger-zone.hbs --}}
<button {{action 'openDeleteUserModal' data.user.id data.user.email}} class='ui red button'>
{{t 'Delete Your Account'}}
</button>
@shreyanshdwivedi
shreyanshdwivedi / isUserDeletable.js
Last active June 18, 2019 11:10
Open Event: Tests if a user is deletable or not
// 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;
})