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