You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/controllers/api/comments_controller.rb

36 lines
747 B
Ruby

class Api::CommentsController < ApplicationController
respond_to :json
before_filter :ensure_authenticated!, :only => [:create, :destroy]
before_filter :load_asciicast, :only => [:index, :create]
def index
respond_with @asciicast.comments
end
def create
@comment = Comment.new(params[:comment])
@comment.asciicast = @asciicast
@comment.user = current_user
@comment.save
respond_with @comment, :location => api_comment_url(@comment)
end
def destroy
comment = Comment.find(params[:id])
if comment.user == current_user
respond_with comment.delete
else
13 years ago
raise Forbidden
end
end
private
def load_asciicast
@asciicast = Asciicast.find(params[:asciicast_id])
end
end