trabajo-afectivo/app/controllers/activity_controller.rb

12 lines
287 B
Ruby
Raw Normal View History

class ActivityController < ApplicationController
before_filter :authentication_check
# GET /activity_stream
def activity_stream
2012-07-23 22:22:23 +00:00
activity_stream = History.activity_stream_fulldata(current_user, params[:limit])
# return result
2012-07-23 22:22:23 +00:00
render :json => activity_stream
end
end