Files
fizzy/app/controllers/collections/entropies_controller.rb
T
2025-11-02 20:22:15 +01:00

13 lines
263 B
Ruby

class Collections::EntropiesController < ApplicationController
include CollectionScoped
def update
@collection.entropy.update!(entropy_params)
end
private
def entropy_params
params.expect(collection: [ :auto_postpone_period ])
end
end