mirror of
https://github.com/fspc/bike-database.git
synced 2026-01-08 09:35:35 -05:00
12 lines
240 B
Ruby
12 lines
240 B
Ruby
class ReportsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def bikes_sold_per_year
|
|
@yearly_data = Report.yearly_data
|
|
end
|
|
|
|
def bikes_fixed_per_week
|
|
@weekly_data = Report.bikes_fixed_per_week
|
|
end
|
|
end
|