13 lines
204 B
Ruby
13 lines
204 B
Ruby
class MainController < ApplicationController
|
|
|
|
respond_to :html, :js, :json
|
|
|
|
def home
|
|
@current_user = current_user
|
|
|
|
@all = Group.all + Person.all + Item.all
|
|
|
|
respond_with(@all)
|
|
end
|
|
|
|
end
|