2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/controllers/draft_controller.rb

21 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