Files
fizzy/app/controllers/boards/entropies_controller.rb
T
2025-11-05 13:41:12 +01:00

13 lines
243 B
Ruby

class Boards::EntropiesController < ApplicationController
include BoardScoped
def update
@board.entropy.update!(entropy_params)
end
private
def entropy_params
params.expect(board: [ :auto_postpone_period ])
end
end