9 lines
171 B
Ruby
9 lines
171 B
Ruby
class Account::SettingsController < ApplicationController
|
|
include FilterScoped
|
|
|
|
def show
|
|
@account = Account.sole
|
|
@users = User.active.alphabetically
|
|
end
|
|
end
|