コード例 #1
0
ファイル: App.php プロジェクト: huiancg/kohana-huia-manager
 public function action_delete_draft()
 {
     if ($this->request->method() !== Request::POST) {
         return;
     }
     $this->model->clean_draft();
     $this->response->json(TRUE);
 }