Files
fizzy/app/controllers/account/settings_controller.rb
T
2025-11-02 08:34:06 +01:00

19 lines
374 B
Ruby

class Account::SettingsController < ApplicationController
before_action :ensure_admin, only: :update
def show
@account = Account.sole
@users = User.active.alphabetically
end
def update
Account.sole.update!(account_params)
redirect_to account_settings_path
end
private
def account_params
params.expect account: %i[ name ]
end
end