mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:36:15 +08:00
![Sam](/assets/img/avatar_default.png)
This also corrects the positioning in the chain of the check and removes misuse of prepend_before_action
22 lines
581 B
Ruby
22 lines
581 B
Ruby
class DraftController < ApplicationController
|
|
requires_login
|
|
|
|
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
|