Sha256: 5461df51e387c5159e7da4e29d8c67b03bce4b7f0495c340eb635a0a1d4bf5e7
Contents?: true
Size: 635 Bytes
Versions: 28
Compression:
Stored size: 635 Bytes
Contents
module Krikri ## # Handles HTTP requests for Field Value Reports # # @see Krikri::FieldValueReport class FieldValueReportsController < ApplicationController ## # Renders the show view for the field value report, given by a compound key. # The compound key is comprised by the field value report's field # (represented by the route's id param) and the provider's id. def show @field_value_report = Krikri::FieldValueReport.find(params[:id], params[:provider_id]) respond_to do |format| format.csv end end end end
Version data entries
28 entries across 28 versions & 1 rubygems