Module: Card::Set::Right::Password
- Extended by:
- Card::Set
- Defined in:
- platypus/tmp/set/gem-defaults/mod014-account/right/password.rb
Overview
Set: All “+Password” cards
Defined Under Namespace
Modules: HtmlFormat
Constant Summary
Constants included from Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Constants included from Event::Api
Class Method Summary collapse
Instance Method Summary collapse
-
#event: encrypt_password ⇒ Object
-
#event: validate_password ⇒ Object
-
#event: validate_password_present ⇒ Object
-
#history? ⇒ Boolean
-
#ok_to_read ⇒ Object
-
#view: raw ⇒ Object
Methods included from Card::Set
Methods included from I18nScope
Methods included from Card::Set::Registrar
#extended, #finalize_load, #process_base_modules, #register_set
Methods included from Helpers
#format_module, #format_modules, #method_missing, #modules, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscored_name
Methods included from AdvancedApi
#assign_type, #attachment, #define_set_from_error, #ensure_set, #setting_opts, #stage_method
Methods included from Format
#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name
Methods included from Inheritance
#include_set, #include_set_formats
Methods included from Trait
#card_accessor, #card_reader, #card_writer, #require_field
Methods included from Event::Api
Class Method Details
.source_location ⇒ Object
7 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 7 def self.source_location; "/Users/ethan/dev/decko/gem/mod/account/set/right/password.rb"; end |
Instance Method Details
#event: encrypt_password ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 20 event :encrypt_password, :store, on: :save, changed: :content do salt = left&.salt self.content = Auth.encrypt content, salt # errors.add :password, 'need a valid salt' # turns out we have a lot of existing account without a salt. # not sure when that broke?? end |
#event: validate_password ⇒ Object
29 30 31 32 33 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 29 event :validate_password, :validate, on: :save do return if content.length > 3 errors.add :password, t(:account_password_length) end |
#event: validate_password_present ⇒ Object
35 36 37 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 35 event :validate_password_present, :prepare_to_validate, on: :update do abort :success if content.blank? end |
#history? ⇒ Boolean
12 13 14 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 12 def history? false end |
#ok_to_read ⇒ Object
16 17 18 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 16 def ok_to_read own_account? || super end |
#view: raw ⇒ Object
39 40 41 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 39 view :raw do t :account_encrypted end |