Class: Gold::ReferralsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/gold/referrals_controller.rb

Overview

Handles referral tracking

Instance Method Summary collapse

Instance Method Details

#trackObject



4
5
6
7
8
9
10
# File 'app/controllers/gold/referrals_controller.rb', line 4

def track
  referral = Referral.find_by(code: params[:code])

  cookies[:gold_referral_id] = { value: referral.id, expires: 30.days } if referral

  redirect_to Gold.configuration.app_listing_url
end