asciinema.org/app/controllers/asciicasts_controller.rb

14 lines
245 B
Ruby
Raw Normal View History

2011-11-23 21:30:09 +00:00
class AsciicastsController < ApplicationController
2012-03-03 17:38:11 +00:00
respond_to :html, :json
2011-11-23 21:30:09 +00:00
def index
2011-11-27 12:54:10 +00:00
@asciicasts = Asciicast.order("created_at DESC")
end
def show
2011-11-23 21:30:09 +00:00
@asciicast = Asciicast.find(params[:id])
2012-03-03 17:38:11 +00:00
respond_with @asciicast
2011-11-23 21:30:09 +00:00
end
end