Skip to content

Reward users for visiting a page

Omar Abdel-Wahab edited this page May 20, 2013 · 1 revision

Example: users gain points for hitting the list of products.

# app/models/user.rb
class User < ActiveRecord::Base
  acts_as_recognizable
end
# app/controllers/products.rb
class ProductsController  < ApplicationController
  recognize :current_user, for: :index, gain: 1
end
Clone this wiki locally