mirror of
https://github.com/aoaostar/toolbox.git
synced 2025-12-27 15:01:17 +00:00
使用naive ui重构后台面板
重构用户系统,方便支持更多OAuth认证方式
重构插件系统,方便静态资源的添加
BREAKING CHANGE: 🧨 更改管理员身份认证为用户id
16 lines
177 B
PHP
16 lines
177 B
PHP
<?php
|
|
|
|
|
|
namespace app\controller;
|
|
|
|
|
|
use app\BaseController;
|
|
|
|
class Base extends BaseController
|
|
{
|
|
protected function initialize()
|
|
{
|
|
parent::initialize();
|
|
|
|
}
|
|
} |