Module: Hyrax::User::ClassMethods
- Defined in:
- app/models/concerns/hyrax/user.rb
Instance Method Summary collapse
-
#audit_user ⇒ Object
Override this method if you aren’t using email/password.
- #audit_user_key ⇒ Object
-
#batch_user ⇒ Object
Override this method if you aren’t using email/password.
- #batch_user_key ⇒ Object
- #find_or_create_system_user(user_key) ⇒ Object
- #from_url_component(component) ⇒ Object
- #recent_users(start_date, end_date = nil) ⇒ Object
Instance Method Details
#audit_user ⇒ Object
Override this method if you aren’t using email/password
139 140 141 |
# File 'app/models/concerns/hyrax/user.rb', line 139 def audit_user find_or_create_system_user(audit_user_key) end |
#audit_user_key ⇒ Object
143 144 145 |
# File 'app/models/concerns/hyrax/user.rb', line 143 def audit_user_key Hyrax.config.audit_user_key end |
#batch_user ⇒ Object
Override this method if you aren’t using email/password
148 149 150 |
# File 'app/models/concerns/hyrax/user.rb', line 148 def batch_user find_or_create_system_user(batch_user_key) end |
#batch_user_key ⇒ Object
152 153 154 |
# File 'app/models/concerns/hyrax/user.rb', line 152 def batch_user_key Hyrax.config.batch_user_key end |
#find_or_create_system_user(user_key) ⇒ Object
156 157 158 |
# File 'app/models/concerns/hyrax/user.rb', line 156 def find_or_create_system_user(user_key) User.find_by_user_key(user_key) || User.create!(Hydra.config.user_key_field => user_key, password: Devise.friendly_token[0, 20]) end |
#from_url_component(component) ⇒ Object
160 161 162 |
# File 'app/models/concerns/hyrax/user.rb', line 160 def from_url_component(component) User.find_by_user_key(component.gsub(/-dot-/, '.')) end |
#recent_users(start_date, end_date = nil) ⇒ Object
164 165 166 167 |
# File 'app/models/concerns/hyrax/user.rb', line 164 def recent_users(start_date, end_date = nil) end_date ||= DateTime.current # doing or eq here so that if the user passes nil we still get now User.where(created_at: start_date..end_date) end |