volontariat/voluntary

View on GitHub
app/controllers/workflow/stories_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Workflow::StoriesController < ApplicationController
  def index
    @product = Product.friendly.find(params[:product_id])
    @stories = @product.stories
  end
end