Files
fizzy/app/controllers/account/entropies_controller.rb
T
2025-11-02 13:11:41 +01:00

12 lines
289 B
Ruby

class Account::EntropiesController < ApplicationController
def update
Entropy.default.update!(entropy_params)
redirect_to account_settings_path, notice: "Account updated"
end
private
def entropy_params
params.expect(entropy: [ :auto_postpone_period ])
end
end