mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
7 lines
191 B
Ruby
7 lines
191 B
Ruby
class Income < ApplicationRecord
|
|
scope :by_designation, -> { all.map { |income| [income.designation, income] }.to_h }
|
|
|
|
include FriendlyId
|
|
|
|
friendly_id :designation, use: [:slugged]
|
|
end
|