aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/user.rb
diff options
context:
space:
mode:
authorGriffin Smith <wildgriffin45@gmail.com>2015-07-10 11:32:18 -0400
committerGriffin Smith <wildgriffin45@gmail.com>2016-01-09 14:49:00 -0500
commit21c0a1f3016b1de81f455f2a242803db91f96f17 (patch)
treeddd93f8de3d51333bd0ab18fb2f7181368c5500e /activerecord/test/models/user.rb
parent9d681fc74c6251d5f2b93fa9576c9b2113116680 (diff)
downloadrails-21c0a1f3016b1de81f455f2a242803db91f96f17.tar.gz
rails-21c0a1f3016b1de81f455f2a242803db91f96f17.tar.bz2
rails-21c0a1f3016b1de81f455f2a242803db91f96f17.zip
Support :if and :unless in has_secure_token
Pass through :if and :unless options from has_secure_token to the generated before_create callback
Diffstat (limited to 'activerecord/test/models/user.rb')
-rw-r--r--activerecord/test/models/user.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/test/models/user.rb b/activerecord/test/models/user.rb
index f5dc93e994..a40385e047 100644
--- a/activerecord/test/models/user.rb
+++ b/activerecord/test/models/user.rb
@@ -1,6 +1,9 @@
class User < ActiveRecord::Base
has_secure_token
has_secure_token :auth_token
+ has_secure_token :conditional_token, if: :token_condition
+
+ attr_accessor :token_condition
end
class UserWithNotification < User