mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
8 lines
264 B
Ruby
8 lines
264 B
Ruby
# frozen_string_literal: true
|
|
|
|
# OAuth2Mapping defines a database field, saving user's data, that is mapped to an external API, that is authorized
|
|
# through an external SSO of type oAuth 2
|
|
class OAuth2Mapping < ApplicationRecord
|
|
belongs_to :o_auth2_provider
|
|
end
|