Skip to Content Skip to Search

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.

Source code GitHub
# File activerecord/lib/active_record/token_for.rb, line 109
def generate_token_for(purpose)
  self.class.token_definitions.fetch(purpose).generate_token(self)
end

Namespace

Definition files