4527dcbeda
After removing collections from the filtering menu, there was quite a good cleanup here pending
7 lines
147 B
Ruby
7 lines
147 B
Ruby
class Account::SettingsController < ApplicationController
|
|
def show
|
|
@account = Account.sole
|
|
@users = User.active.alphabetically
|
|
end
|
|
end
|