joegattnet/joegattnet_v3

View on GitHub
app/models/concerns/tokenable.rb

Summary

Maintainability
A
0 mins
Test Coverage
# See http://stackoverflow.com/questions/6021372/best-way-to-create-unique-token-in-rails

module Tokenable
  extend ActiveSupport::Concern

  def generate_token
    SecureRandom.urlsafe_base64(nil, false)
  end
end