BenMusch/nu-tab

View on GitHub
app/controllers/application_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
Add an empty line after magic comments.
class ApplicationController < ActionController::Base
def index
@schools = School.order(:name)
@judges = Judge.order(:name)
@teams = Team.order(:name)
@debaters = Debater.order(:name)
@rooms = Room.order(:name)
render 'shared/dashboard'
end
end