Noosfero/noosfero

View on GitHub
plugins/oauth_client/lib/ext/profile.rb

Summary

Maintainability
A
0 mins
Test Coverage
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