f89413f3f5
* main: Add a focus effect when hovering columns Fix up hotkeys test: backfill hotkeys helper tests refactor: remove unused routes associated with "resource :account" test: backfill account route tests to prepare for refactor Alphabetically order concerns (#992) Copy Don't show the filter if there aren't any tags Add clearer labels for sorting options Prevent deleting the last collection Don't show "All collections" when there's only the default collection Rename engagement columns
9 lines
156 B
Ruby
9 lines
156 B
Ruby
class Account::SettingsController < ApplicationController
|
|
include FilterScoped
|
|
|
|
def show
|
|
@account = Account.sole
|
|
@users = User.active
|
|
end
|
|
end
|