Sha256: 10669f9fae5593a1993858dff1882f2828d8a2faad66d4a645c561892ee3dfc0
Contents?: true
Size: 675 Bytes
Versions: 38
Compression:
Stored size: 675 Bytes
Contents
module ContentProviders module GratitudeRecordings # Allows participants to record a new gratitude class NewProvider < BitCore::ContentProvider def data_attributes [:description] end def data_class_name "GratitudeRecording" end def render_current(options) options.view_context.render( template: "think_feel_do_engine/gratitude_recordings/new_provider", locals: { create_path: options.view_context.participant_data_path, participant: options.view_context.current_participant }) end def show_nav_link? false end end end end
Version data entries
38 entries across 38 versions & 1 rubygems