diff options
author | ThibG <thib@sitedethib.com> | 2020-12-10 10:25:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 10:25:52 +0100 |
commit | cbe9b0640ba4d466c8b24fb233dff60e9f8d00f0 (patch) | |
tree | 4e814a622966f1b71f18c1ff41116c75f0728afc /app/models | |
parent | b27d11dd3320cb005561f0bb1b81baecea8a7c43 (diff) | |
parent | 9a5825f864b9e9c545e995249518bb50a74f4359 (diff) |
Merge pull request #1473 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 9bdbac76d..984f04b4e 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -89,6 +89,13 @@ class User < ApplicationRecord validates_with EmailMxValidator, if: :validate_email_dns? validates :agreement, acceptance: { allow_nil: false, accept: [true, 'true', '1'] }, on: :create + # Those are honeypot/antispam fields + attr_accessor :registration_form_time, :website, :confirm_password + + validates_with RegistrationFormTimeValidator, on: :create + validates :website, absence: true, on: :create + validates :confirm_password, absence: true, on: :create + scope :recent, -> { order(id: :desc) } scope :pending, -> { where(approved: false) } scope :approved, -> { where(approved: true) } |