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