mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 12:39:53 +01:00
Validate format of sharing_custom_url
This commit is contained in:
parent
8f0ae5171d
commit
47d1f5ccff
1 changed files with 1 additions and 0 deletions
|
@ -61,6 +61,7 @@ class User < ApplicationRecord # rubocop:disable Metrics/ClassLength
|
|||
end
|
||||
|
||||
validates :email, fake_email: true, typoed_email: true
|
||||
validates :sharing_custom_url, format: URI::DEFAULT_PARSER.make_regexp(%w[http https])
|
||||
validates :screen_name,
|
||||
presence: true,
|
||||
format: { with: SCREEN_NAME_REGEX, message: I18n.t("activerecord.validation.user.screen_name.format") },
|
||||
|
|
Loading…
Reference in a new issue