Sha256: 3c72c4e17b5043459860aeaec21f2237a0c626a83c0e550934e4e0d5f3ff71d8
Contents?: true
Size: 206 Bytes
Versions: 13
Compression:
Stored size: 206 Bytes
Contents
class FinancialReportsController < ApplicationController def show @year = params[:year] @txn_type = params[:txn_type] @txns = Transaction.find_all(:year => @year, :type => @txn_type) end end
Version data entries
13 entries across 13 versions & 1 rubygems