Sha256: f442bfd7b73c1309f039d1a365241c79009ed270292c54ad1457538eae63ef34
Contents?: true
Size: 576 Bytes
Versions: 55
Compression:
Stored size: 576 Bytes
Contents
module ContentProviders # Provides a view of Activities that occured during a Participant's most # recent AwakePeriod. class ActivityIndexProvider < BitCore::ContentProvider def data_class_name "Activity" end def render_current(options) options.view_context.render( template: "think_feel_do_engine/activities/index", locals: { activities: options .participant .recent_activities .order("start_time ASC") } ) end def show_nav_link? true end end end
Version data entries
55 entries across 55 versions & 1 rubygems