Sha256: a695e998246f4ef54a80b2c8bb6756abc43ae17e94c9b6cc78a4478899e0bb66
Contents?: true
Size: 495 Bytes
Versions: 13
Compression:
Stored size: 495 Bytes
Contents
# frozen_string_literal: true 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
13 entries across 13 versions & 1 rubygems