This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/controllers/clicks_controller.rb
2019-04-23 12:41:36 +03:00

19 lines
390 B
Ruby

class ClicksController < ApplicationController
skip_before_action :check_xhr, :preload_json
def track
params.require([:url, :post_id, :topic_id])
TopicLinkClick.create_from(
url: params[:url],
post_id: params[:post_id],
topic_id: params[:topic_id],
ip: request.remote_ip,
user_id: current_user&.id
)
render json: success_json
end
end