Sha256: 7f498171d09655311dc8431e244eebaef5413e5efd5015ede879251f6db0f138
Contents?: true
Size: 465 Bytes
Versions: 55
Compression:
Stored size: 465 Bytes
Contents
module ContentProviders # Provides a list of all ThoughtPatterns. class ThoughtPatternsIndexProvider < BitCore::ContentProvider def data_class_name "ThoughtPattern" end def show_nav_link? false end def render_current(options) options.view_context.render( template: "think_feel_do_engine/thought_patterns/index", locals: { thought_patterns: ThoughtPattern.all } ) end end end
Version data entries
55 entries across 55 versions & 1 rubygems