Files
fizzy/app/controllers/account/settings_controller.rb
T
Jorge Manrubia 4527dcbeda Remove unnecessary filtering code
After removing collections from the filtering menu, there was quite a good cleanup here pending
2025-10-03 10:56:34 +02:00

7 lines
147 B
Ruby

class Account::SettingsController < ApplicationController
def show
@account = Account.sole
@users = User.active.alphabetically
end
end