af83/chouette-core

View on GitHub
app/controllers/redirect/routes_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Redirect
  class RoutesController < BaseController
    include ReferentialSupport

    def route
      referential.routes.find(params[:id])
    end

    def show
      redirect_to referential_line_route_path referential, route.line, route
    end
  end
end