af83/chouette-core

View on GitHub
app/controllers/line_referentials_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class LineReferentialsController < Chouette::WorkbenchController
  defaults resource_class: LineReferential, singleton: true

  def show
    show! do
      @line_referential = LineReferentialDecorator.decorate(@line_referential, context: { workbench: workbench })
    end
  end
end