ArturT/Railstom

View on GitHub
app/controllers/templates_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TemplatesController < HighVoltage::PagesController
  layout false
  before_action :build_id

  private

  def build_id
    params[:id] = "templates/#{params[:id]}"
  end
end