87d81e608b
- Drop from 313 unused routes to 306 unused routes - Use a namespace for the account-related resource routes - Controllers are nested under the "Account" module now - Move views from "accounts/" to "account/"
7 lines
132 B
Ruby
7 lines
132 B
Ruby
class Account::SettingsController < ApplicationController
|
|
def show
|
|
@account = Account.sole
|
|
@users = User.active
|
|
end
|
|
end
|