avrj/eventTicketing

View on GitHub
app/controllers/customer/seat_selector_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Customer::SeatSelectorController < ApplicationController
    def index
    @seats = TicketType.where(is_seat: true)
    @tickets = TicketType.where(is_seat: false)
    end
end