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