Louis | Adds reports on number of bikes sold and average price per year

This commit is contained in:
Loos
2014-12-21 23:36:55 -06:00
parent f7de4ea77a
commit 90b059a46d
5 changed files with 50 additions and 8 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ class ReportsController < ApplicationController
before_action :authenticate_user!
def bikes_sold_per_year
@bikes_sold_per_year = Report.bikes_sold_per_year
@yearly_data = Report.yearly_data
end
end