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