highway/app/controllers/prizes_controller.rb
2025-05-07 22:04:48 -04:00

10 lines
No EOL
304 B
Ruby

# app/controllers/prizes_controller.rb
class PrizesController < ApplicationController
before_action :require_authentication
def add_to_box
prize = Prize.find(params[:id])
current_user.user_prizes.create!(prize: prize)
redirect_to prizes_path, notice: "Added to your prize box!"
end
end