Skip to content

Instantly share code, notes, and snippets.

@erichurst
Created May 1, 2010 14:24
Show Gist options
  • Save erichurst/386367 to your computer and use it in GitHub Desktop.
Save erichurst/386367 to your computer and use it in GitHub Desktop.
class UsersController < ApplicationController
...
def create
referral_id = User.find_valid_referral(params[:user][:referral])
@user = User.new(params[:user].merge(:referral_id => referral_id))
...
end
...
end
class User < ActiveRecord::Base
...
def self.find_valid_referral(username)
user = User.find_by_username(username)
if user.nil?
return 999999999999999999
else
return user.id
end
end
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment