asciinema.org/app/controllers/api/asciicasts_controller.rb
2012-06-09 15:25:43 +02:00

16 lines
376 B
Ruby

class Api::AsciicastsController < ApplicationController
skip_before_filter :verify_authenticity_token
def create
ac = Asciicast.new(params[:asciicast])
if ac.save
SnapshotQueue.push ac.id
render :text => asciicast_url(ac), :status => :created, :location => ac
else
render :text => ac.errors.full_messages, :status => 422
end
end
end