mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-08 23:08:14 -07:00
17 lines
223 B
Ruby
17 lines
223 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Dashboard
|
|
module Analyze
|
|
module Group
|
|
class Grade
|
|
def name
|
|
"Grade"
|
|
end
|
|
|
|
def slug
|
|
"grade"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|