You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

association.rb 274B

1234567891011
  1. # frozen_string_literal: true
  2. module OpenIdAuthentication
  3. class Association < ActiveRecord::Base
  4. self.table_name = :open_id_authentication_associations
  5. def from_record
  6. OpenID::Association.new(handle, secret, issued, lifetime, assoc_type)
  7. end
  8. end
  9. end