Skip to content

Instantly share code, notes, and snippets.

@aldesantis
Created January 20, 2019 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aldesantis/cceae9bebeed01c854509d46d01bef50 to your computer and use it in GitHub Desktop.
Save aldesantis/cceae9bebeed01c854509d46d01bef50 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
before_action :track_request
private
def track_request
ApiRequest.create!(
user: current_user,
url: request.original_url,
env: request.env,
ip_address: request.remote_ip,
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment