Sha256: 4dc51e2350e0bb9766cb64d12b3dbd945ed729ea6434b002aad9f8444067ff5e

Contents?: true

Size: 593 Bytes

Versions: 13

Compression:

Stored size: 593 Bytes

Contents

# frozen_string_literal: true
module ContentProviders
  # Provides a view of completed Activities during the Participant"s most
  # recent AwakePeriod.
  class AccomplishedActivityIndexProvider < BitCore::ContentProvider
    def render_current(options)
      options.view_context.render(
        template: "think_feel_do_engine/activities/accomplished_index",
        locals: {
          activities: options
            .participant
            .recent_accomplished_activities
            .order(start_time: :asc)
        }
      )
    end

    def show_nav_link?
      true
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
think_feel_do_engine-3.22.9 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.8 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.7 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.6 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.5 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.4 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.2 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.1 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.22.0 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.21.2 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.21.1 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.21.0 app/models/content_providers/accomplished_activity_index_provider.rb
think_feel_do_engine-3.20.1 app/models/content_providers/accomplished_activity_index_provider.rb