gauge/app/controllers/conflicts_controller.rb

6 lines
144 B
Ruby
Raw Normal View History

2016-10-06 22:45:08 +03:00
class ConflictsController < ApplicationController
def index
@talks = Talk.find(:all, from: :halfnarp_friendly).sort_by(&:title)
end
end