mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 13:48:48 +08:00
33 lines
732 B
Ruby
33 lines
732 B
Ruby
class UserActionsController < ApplicationController
|
|
|
|
def index
|
|
params.require(:username)
|
|
params.permit(:filter, :offset)
|
|
|
|
per_chunk = 60
|
|
|
|
user = fetch_user_from_params
|
|
|
|
opts = {
|
|
user_id: user.id,
|
|
offset: params[:offset].to_i,
|
|
limit: per_chunk,
|
|
action_types: (params[:filter] || "").split(",").map(&:to_i),
|
|
guardian: guardian,
|
|
ignore_private_messages: params[:filter] ? false : true
|
|
}
|
|
|
|
render_serialized(UserAction.stream(opts), UserActionSerializer, root: "user_actions")
|
|
end
|
|
|
|
def show
|
|
params.require(:id)
|
|
render_serialized(UserAction.stream_item(params[:id], guardian), UserActionSerializer)
|
|
end
|
|
|
|
def private_messages
|
|
# DO NOT REMOVE
|
|
end
|
|
|
|
end
|