cirandas.net

ref: master

plugins/oauth_client/lib/ext/profile.rb


1
2
3
4
5
6
7
8
require_dependency 'profile'

class Profile

  has_many :oauth_auths, foreign_key: :profile_id, class_name: 'OauthClientPlugin::Auth', dependent: :destroy
  has_many :oauth_providers, through: :oauth_auths, source: :provider

end