demarches-normaliennes/app/controllers/champs/repetition_controller.rb

9 lines
228 B
Ruby
Raw Normal View History

2019-01-30 16:14:15 +01:00
class Champs::RepetitionController < ApplicationController
before_action :authenticate_logged_user!
def show
@champ = policy_scope(Champ).includes(:champs).find(params[:champ_id])
@champs = @champ.add_row
2019-01-30 16:14:15 +01:00
end
end