sqm-dashboards/app/presenters/analyze/group/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

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