Module: KirguduBase::Models::Scopes::ByID
- Defined in:
- app/helpers/kirgudu_base/models/scopes.rb
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
141 142 143 |
# File 'app/helpers/kirgudu_base/models/scopes.rb', line 141 def self.included(base) base.scope :by_id, lambda { |value| base.where(id: value) if value } end |