consul/consul

View on GitHub
app/components/documents/document_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Documents::DocumentComponent < ApplicationComponent
  attr_reader :document, :show_destroy_link
  alias_method :show_destroy_link?, :show_destroy_link
  use_helpers :can?

  def initialize(document, show_destroy_link: false)
    @document = document
    @show_destroy_link = show_destroy_link
  end
end