Class: Tramway::Core::ApplicationRecord
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Tramway::Core::ApplicationRecord
- Extended by:
- Enumerize
- Includes:
- PgSearch::Model
- Defined in:
- app/models/tramway/core/application_record.rb
Class Method Summary collapse
- .file_extensions ⇒ Object
- .human_attribute_name(attribute_name, *_args) ⇒ Object
- .photo_versions ⇒ Object
- .search_by(*attributes, **associations) ⇒ Object
- .uploader(attribute_name, uploader_name, **options) ⇒ Object
Instance Method Summary collapse
- #creator ⇒ Object
-
#human_state_name ⇒ Object
FIXME: detect inhertited locales.
Class Method Details
.file_extensions ⇒ Object
56 57 58 |
# File 'app/models/tramway/core/application_record.rb', line 56 def file_extensions @extensions end |
.human_attribute_name(attribute_name, *_args) ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'app/models/tramway/core/application_record.rb', line 33 def human_attribute_name(attribute_name, *_args) excepted_attributes = %w[created_at updated_at state] if attribute_name.to_s.in? excepted_attributes I18n.t "activerecord.attributes.tramway/core/application_record.#{attribute_name}" else super attribute_name end end |
.photo_versions ⇒ Object
52 53 54 |
# File 'app/models/tramway/core/application_record.rb', line 52 def photo_versions @versions end |
.search_by(*attributes, **associations) ⇒ Object
42 43 44 |
# File 'app/models/tramway/core/application_record.rb', line 42 def search_by(*attributes, **associations) pg_search_scope :full_text_search, against: attributes, associated_against: associations end |
.uploader(attribute_name, uploader_name, **options) ⇒ Object
46 47 48 49 50 |
# File 'app/models/tramway/core/application_record.rb', line 46 def uploader(attribute_name, uploader_name, **) mount_uploader attribute_name, "#{uploader_name.to_s.camelize}Uploader".constantize @versions = [:versions] if uploader_name == :photo @extensions = [:extensions] end |
Instance Method Details
#creator ⇒ Object
27 28 29 |
# File 'app/models/tramway/core/application_record.rb', line 27 def creator audits.where(action: :create).first.user end |
#human_state_name ⇒ Object
FIXME: detect inhertited locales
62 63 64 |
# File 'app/models/tramway/core/application_record.rb', line 62 def human_state_name I18n.t "activerecord.state_machines.tramway/core/application_record.state.states.#{state}" end |