Dashboard/app/presenters/dashboard/analyze/group/sped.rb
2024-01-26 19:07:15 -08:00

17 lines
233 B
Ruby

# frozen_string_literal: true
module Dashboard
module Analyze
module Group
class Sped
def name
"Special Education"
end
def slug
"sped"
end
end
end
end
end