mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
14 lines
351 B
Ruby
14 lines
351 B
Ruby
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class ActivityStreamController < ApplicationController
|
|
before_action :authentication_check
|
|
|
|
# GET /api/v1/activity_stream
|
|
def show
|
|
activity_stream = current_user.activity_stream(params[:limit], true)
|
|
|
|
# return result
|
|
render json: activity_stream
|
|
end
|
|
|
|
end
|