sqm-dashboards/app/presenters/analyze/slice/base.rb
rebuilt 6269414bca Refactor groups
Refactor graphs to take new slice format

Add Students and Teachers and Parents graph.  Add selector for that
graph
2025-03-20 13:18:12 -07:00

17 lines
265 B
Ruby

module Analyze
module Slice
class Base
attr_reader :graph, :label, :slug
def initialize(label:, slug:, graph:)
@label = label
@slug = slug
@graph = graph
end
def to_s
label
end
end
end
end