6 lines
144 B
Ruby
6 lines
144 B
Ruby
|
class ConflictsController < ApplicationController
|
||
|
def index
|
||
|
@talks = Talk.find(:all, from: :halfnarp_friendly).sort_by(&:title)
|
||
|
end
|
||
|
end
|