去掉开发中的模块

This commit is contained in:
2021-04-12 02:54:21 +08:00
parent 107b6bff21
commit de8a7e82be
14 changed files with 0 additions and 2297 deletions
@@ -1,25 +0,0 @@
<?php namespace Gdoo\Workflow\Controllers;
use DB;
use Auth;
use Request;
use Gdoo\Index\Controllers\DefaultController;
use Gdoo\User\Models\User;
class WidgetController extends DefaultController
{
public $permission = ['index'];
public function index()
{
if (Request::method() == 'POST') {
$rows = [];
$json['total'] = sizeof($rows);
$json['data'] = $rows;
return $json;
}
return $this->render();
}
}