2013-02-05 13:16:51 -06:00
|
|
|
class UserActionsController < ApplicationController
|
2014-05-09 10:49:39 -05:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def index
|
2013-05-26 20:02:58 -05:00
|
|
|
params.require(:username)
|
|
|
|
params.permit(:filter, :offset)
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
per_chunk = 60
|
2013-05-20 01:44:06 -05:00
|
|
|
|
2013-05-22 10:20:16 -05:00
|
|
|
user = fetch_user_from_params
|
|
|
|
|
2013-05-20 01:44:06 -05:00
|
|
|
opts = {
|
2013-05-22 10:20:16 -05:00
|
|
|
user_id: user.id,
|
|
|
|
offset: params[:offset].to_i,
|
2013-02-07 09:45:24 -06:00
|
|
|
limit: per_chunk,
|
2013-05-20 01:44:06 -05:00
|
|
|
action_types: (params[:filter] || "").split(",").map(&:to_i),
|
2013-02-05 13:16:51 -06:00
|
|
|
guardian: guardian,
|
|
|
|
ignore_private_messages: params[:filter] ? false : true
|
2013-05-20 01:44:06 -05:00
|
|
|
}
|
|
|
|
|
2013-09-30 13:35:11 -05:00
|
|
|
render_serialized(UserAction.stream(opts), UserActionSerializer, root: "user_actions")
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2013-05-26 20:02:58 -05:00
|
|
|
params.require(:id)
|
2014-08-29 12:46:50 -05:00
|
|
|
render_serialized(UserAction.stream_item(params[:id], guardian), UserActionSerializer)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2014-05-12 05:02:32 -05:00
|
|
|
def private_messages
|
|
|
|
# DO NOT REMOVE
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|