1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/user_omniauth.rb

20 lines
356 B
Ruby
Raw Normal View History

2018-12-03 22:08:33 -05:00
# frozen_string_literal: true
class UserOmniauth < ApplicationRecord
2019-10-17 22:43:52 -04:00
################
# Associations #
################
2018-12-03 22:08:33 -05:00
belongs_to :user
2019-10-17 22:43:52 -04:00
###############
# Validations #
###############
2018-12-03 22:08:33 -05:00
validates :provider, presence: true, uniqueness: { scope: :remote_id }
2019-10-17 22:43:52 -04:00
2018-12-03 22:08:33 -05:00
validates :remote_id, presence: true
2019-10-17 22:43:52 -04:00
2018-12-03 22:08:33 -05:00
validates :email, presence: true
end