mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
12 lines
No EOL
291 B
Ruby
12 lines
No EOL
291 B
Ruby
class ActivityController < ApplicationController
|
|
before_filter :authentication_check
|
|
|
|
# GET /api/activity_stream
|
|
def activity_stream
|
|
activity_stream = History.activity_stream_fulldata(current_user, params[:limit])
|
|
|
|
# return result
|
|
render :json => activity_stream
|
|
end
|
|
|
|
end |