Sha256: 7a73ff930f5bd7ba1c7542bcf944ca7a98abfe9a84833f377de7dac6d8bd203e

Contents?: true

Size: 331 Bytes

Versions: 5

Compression:

Stored size: 331 Bytes

Contents

# frozen_string_literal: true
require_dependency "social_networking/application_controller"

module SocialNetworking
  # Provide Participant home page tools.
  class HomesController < ApplicationController
    include Concerns::ShowFeed

    def show
      render locals: feed_data_for(current_participant, self)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
social_networking-0.13.3 app/controllers/social_networking/homes_controller.rb
social_networking-0.13.2 app/controllers/social_networking/homes_controller.rb
social_networking-0.13.1 app/controllers/social_networking/homes_controller.rb
social_networking-0.13.0 app/controllers/social_networking/homes_controller.rb
social_networking-0.12.0 app/controllers/social_networking/homes_controller.rb