mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04: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
|