ministryofjustice/peoplefinder

View on GitHub
app/controllers/pages_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class PagesController < ApplicationController
  skip_before_action :ensure_user

  def show
    @page_name = params[:id]
  end
end