summaryrefslogtreecommitdiff
path: root/users/app/models/login_format_validation.rb
diff options
context:
space:
mode:
authorjessib <jessib@riseup.net>2013-09-05 14:00:50 -0700
committerjessib <jessib@riseup.net>2013-09-05 14:00:50 -0700
commit3ef22b5a856e1f576fb0a6a589b6b7ab41e1dd18 (patch)
treeb10e99e842a232686872606cd16f631b8397f279 /users/app/models/login_format_validation.rb
parent8e8f5ddda08a883842a8c3e2ffa994e12b25dd39 (diff)
For moment, have identity's address handle aliased from login so we can use LoginFormatValidation. However, this is not how we will want it eventually.
One issue is that the errors messages are set on login, rather than the appropriate field.
Diffstat (limited to 'users/app/models/login_format_validation.rb')
-rw-r--r--users/app/models/login_format_validation.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/users/app/models/login_format_validation.rb b/users/app/models/login_format_validation.rb
index 1d02bd1..c1fcf70 100644
--- a/users/app/models/login_format_validation.rb
+++ b/users/app/models/login_format_validation.rb
@@ -1,19 +1,21 @@
module LoginFormatValidation
extend ActiveSupport::Concern
+ #TODO: Probably will replace this. Playing with using it for aliases too, but won't want it connected to login field.
+
included do
# Have multiple regular expression validations so we can get specific error messages:
validates :login,
:format => { :with => /\A.{2,}\z/,
- :message => "Login must have at least two characters"}
+ :message => "Must have at least two characters"}
validates :login,
:format => { :with => /\A[a-z\d_\.-]+\z/,
:message => "Only lowercase letters, digits, . - and _ allowed."}
validates :login,
:format => { :with => /\A[a-z].*\z/,
- :message => "Login must begin with a lowercase letter"}
+ :message => "Must begin with a lowercase letter"}
validates :login,
:format => { :with => /\A.*[a-z\d]\z/,
- :message => "Login must end with a letter or digit"}
+ :message => "Must end with a letter or digit"}
end
end