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

Add Students and Teachers and Parents graph.  Add selector for that
graph
2025-03-18 11:43:42 -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