colinschoen/enrollme

View on GitHub
app/controllers/team_list_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Controller for teams. Consist fo all teams.
class TeamListController < ApplicationController
  def show
    @teams = Team.all
  end
end