techvision/brails4

View on GitHub
app/controllers/levels_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class LevelsController < ApplicationController
  
  def index
    @levels = Level.all
  end

  def show
    @level = Level.find(params[:id])
    @topics = @level.topics
  end
end