2019-01-30 16:14:15 +01:00
|
|
|
class Champs::RepetitionController < ApplicationController
|
|
|
|
before_action :authenticate_logged_user!
|
|
|
|
|
|
|
|
def show
|
2021-10-27 16:27:17 +02:00
|
|
|
@champ = policy_scope(Champ).includes(:champs).find(params[:champ_id])
|
2022-04-28 15:06:40 +02:00
|
|
|
@champs = @champ.add_row
|
2019-01-30 16:14:15 +01:00
|
|
|
end
|
|
|
|
end
|