2012-09-23 02:39:12 +00:00
|
|
|
class MainController < ApplicationController
|
|
|
|
|
2012-10-08 05:45:44 +00:00
|
|
|
before_filter :require_user, only: [:userobjects]
|
2012-09-23 02:39:12 +00:00
|
|
|
respond_to :html, :js, :json
|
|
|
|
|
|
|
|
def home
|
|
|
|
@current_user = current_user
|
|
|
|
|
2012-10-18 00:51:54 +00:00
|
|
|
@all = Item.all
|
2012-09-23 02:39:12 +00:00
|
|
|
|
|
|
|
respond_with(@all)
|
|
|
|
end
|
2012-10-08 05:45:44 +00:00
|
|
|
|
|
|
|
def userobjects
|
|
|
|
@user = current_user
|
|
|
|
|
2012-10-18 00:51:54 +00:00
|
|
|
@all = @user.items
|
|
|
|
|
|
|
|
respond_with(@all)
|
|
|
|
end
|
|
|
|
|
|
|
|
def usersynapses
|
|
|
|
@user = current_user
|
|
|
|
|
|
|
|
@all = @user.synapses
|
2012-10-08 05:45:44 +00:00
|
|
|
|
|
|
|
respond_with(@all)
|
|
|
|
end
|
2012-09-23 02:39:12 +00:00
|
|
|
|
|
|
|
end
|