8 lines
243 B
Ruby
8 lines
243 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Dossiers::NotifiedToggleComponent < ApplicationComponent
|
|
def initialize(procedure:, procedure_presentation:)
|
|
@procedure = procedure
|
|
@sorted_column = procedure_presentation.sorted_column
|
|
end
|
|
end
|