注册中间件
This commit is contained in:
parent
109cb7279a
commit
c8eedead00
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace catchAdmin;
|
namespace catchAdmin;
|
||||||
|
|
||||||
|
use catchAdmin\permissions\PermissionsMiddleware;
|
||||||
use catcher\command\InstallCommand;
|
use catcher\command\InstallCommand;
|
||||||
use catcher\command\MigrateRunCommand;
|
use catcher\command\MigrateRunCommand;
|
||||||
use catcher\command\ModelGeneratorCommand;
|
use catcher\command\ModelGeneratorCommand;
|
||||||
@ -28,6 +29,7 @@ class CatchAdminService extends Service
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
$this->registerValidates();
|
$this->registerValidates();
|
||||||
|
$this->registerMiddleWares();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -46,6 +48,17 @@ class CatchAdminService extends Service
|
|||||||
$validate->extend($vali->type(), [$vali, 'verify'], $vali->message());
|
$validate->extend($vali->type(), [$vali, 'verify'], $vali->message());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @time 2019年12月12日
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
protected function registerMiddleWares(): void
|
||||||
|
{
|
||||||
|
$this->app->middleware->import([
|
||||||
|
'check_auth' => PermissionsMiddleware::class
|
||||||
|
], 'route');
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user