mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 15:38:21 -07:00
Refactor graphs to take new slice format Add Students and Teachers and Parents graph. Add selector for that graph
15 lines
252 B
Ruby
15 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Analyze
|
|
module Group
|
|
class Base
|
|
attr_reader :name, :slug, :graph
|
|
|
|
def initialize(name:, slug:, graph:)
|
|
@name = name
|
|
@slug = slug
|
|
@graph = graph
|
|
end
|
|
end
|
|
end
|
|
end
|