We're renaming the HTML class (and removing the id attribute, which was only used in tests) in order to follow our naming conventions.
8 lines
178 B
Ruby
8 lines
178 B
Ruby
class Dashboard::ResourcesComponent < ApplicationComponent
|
|
attr_reader :active_resources
|
|
|
|
def initialize(active_resources)
|
|
@active_resources = active_resources
|
|
end
|
|
end
|