sqm-dashboards/app/presenters/analyze/group/base.rb
rebuilt c70f051e1e 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:12:52 -07:00

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