dawarich/app/controllers/stats_controller.rb
2024-03-24 19:46:55 +01:00

18 lines
431 B
Ruby

class StatsController < ApplicationController
before_action :authenticate_user!
def index
@stats = current_user.stats.group_by(&:year).sort_by { _1 }.reverse
end
def show
@year = params[:year].to_i
@stats = current_user.stats.where(year: @year)
end
def update
StatCreatingJob.perform_later(current_user.id)
redirect_to stats_path, notice: 'Stats are being updated', status: :see_other
end
end