6 lines
108 B
Ruby
6 lines
108 B
Ruby
class ConflictsController < ApplicationController
|
|
def index
|
|
@talks = Talk.ordered_by_rating
|
|
end
|
|
end
|