Move events index datatable row to a partial

- clean up columns
- tag unregistered submitters & speakers
- implement caching
This commit is contained in:
James Mason 2018-02-23 00:00:25 -08:00
parent 0d4c9e32cf
commit a2ed9c0074
7 changed files with 84 additions and 54 deletions

View file

@ -22,6 +22,8 @@ class User < ApplicationRecord
before_create :setup_role
after_save :touch_events
# add scope
scope :comment_notifiable, ->(conference) {joins(:roles).where('roles.name IN (?)', [:organizer, :cfp]).where('roles.resource_type = ? AND roles.resource_id = ?', 'Conference', conference.id)}
@ -231,6 +233,10 @@ class User < ApplicationRecord
end
end
def touch_events
event_users.each(&:touch)
end
##
# Check if biography has an allowed number of words. Used as validation.
#