BadInfoRoutes.php 449 B

1234567891011121314
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: hp
  5. * Date: 2018/1/29
  6. * Time: 20:03
  7. */
  8. Route::group(['domain' => env('MANAGE_DOMAIN'), 'namespace' => 'App\Http\Controllers\Manage\BadInfo', 'prefix' => 'api', 'middleware' => 'ManageApiAuth'], function () {
  9. //获取敏感书统计列表
  10. Route::get('getCurrentSensitiveBooks', 'BookSensitiveStatController@index');
  11. Route::get('getSensitiveChapters', 'SensitiveChapterController@index');
  12. });