7 lines
118 B
Ruby
7 lines
118 B
Ruby
class StaffController < ApplicationController
|
|
def index
|
|
@staff = Person.staff
|
|
respond_with @staff
|
|
end
|
|
end
|