kabisaict/focal

View on GitHub
app/controllers/burndowns_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class BurndownsController < ApplicationController

    # GET /burndowns/:id
  def show
    @burndown  = Burndown.find(params[:id])
    redirect_to burndown_iteration_path(@burndown, @burndown.current_iteration.number)
  end
end