8 lines
162 B
Ruby
8 lines
162 B
Ruby
class AdminsController < ApplicationController
|
|
def new_web_user
|
|
@employers = Employer.active
|
|
@brokers = Broker.all
|
|
@carrier = Carrier.all
|
|
end
|
|
end
|