discourse/app/controllers/draft_controller.rb

22 lines
638 B
Ruby

class DraftController < ApplicationController
before_action :ensure_logged_in
# TODO really do we need to skip this?
skip_before_action :check_xhr, :preload_json
def show
seq = params[:sequence] || DraftSequence.current(current_user, params[:draft_key])
render json: { draft: Draft.get(current_user, params[:draft_key], seq), draft_sequence: seq }
end
def update
Draft.set(current_user, params[:draft_key], params[:sequence].to_i, params[:data])
render json: success_json
end
def destroy
Draft.clear(current_user, params[:draft_key], params[:sequence].to_i)
render json: success_json
end
end