remove attachments

This commit is contained in:
Stella Rouzi 2014-08-17 16:32:01 +03:00
parent 6579b3220f
commit 30c2d66a15
6 changed files with 1 additions and 286 deletions

View file

@ -140,10 +140,5 @@ class Ability
can :manage, Commercial, commercialable_type: 'Event', commercialable_id: user.events.pluck(:id)
# View commercials of confirmed events
can :show, Commercial, commercialable_type: 'Event', commercialable_id: Event.where(state: 'confirmed').pluck(:id)
can :manage, EventAttachment do |ea|
Event.find(ea.event_id).event_users.where(user_id: user.id).present?
end
can :create, EventAttachment
end
end