5 lines
120 B
Ruby
5 lines
120 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
@clips = Clip.order("updated_at DESC").limit(10)
|
|
end
|
|
end
|