gauge/app/controllers/conflicts_controller.rb

6 lines
144 B
Ruby

class ConflictsController < ApplicationController
def index
@talks = Talk.find(:all, from: :halfnarp_friendly).sort_by(&:title)
end
end