module ActiveRecord::TokenFor
Public Instance Methods
Generates a token for a predefined purpose
.
Use ClassMethods#generates_token_for
to define a token purpose and behavior.
# File activerecord/lib/active_record/token_for.rb, line 119 def generate_token_for(purpose) self.class.token_definitions.fetch(purpose).generate_token(self) end