Files
fizzy/app/controllers/account/settings_controller.rb
T
2025-10-31 16:26:08 +01:00

18 lines
345 B
Ruby

class Account::SettingsController < ApplicationController
before_action
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