mirror of
https://github.com/fspc/bike-database.git
synced 2025-12-23 18:55:35 -05:00
9 lines
160 B
Ruby
9 lines
160 B
Ruby
class ReportsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def bikes_sold_per_year
|
|
@yearly_data = Report.yearly_data
|
|
end
|
|
|
|
end
|