WIP - begin adding reports

This commit is contained in:
Loos
2014-11-03 20:26:55 -05:00
parent 34d4cf27c7
commit f7de4ea77a
7 changed files with 25 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
class ReportsController < ApplicationController
before_action :authenticate_user!
def bikes_sold_per_year
@bikes_sold_per_year = Report.bikes_sold_per_year
end
end