avrj/eventTicketing

View on GitHub
app/controllers/seats_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# coding: utf-8
class SeatsController < ApplicationController
  def index
    @seats = Seat.all.order(table: :asc, seat: :asc)
  end
end