mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-07-02 00:02:49 +08:00
- Articles API: list/detail/create/update/delete with source-based permission control - Attachments API: upload/list/delete with source-based permission control - ApiKeyInfo API: query current key permissions - Admin ApiKey management: generate/regenerate/toggle/permission settings with layui UI - Frontend API documentation page with complete interface reference
17 lines
252 B
PHP
17 lines
252 B
PHP
<?php
|
|
|
|
namespace app\index\controller;
|
|
|
|
use think\facade\View;
|
|
|
|
class ApiDoc extends Common
|
|
{
|
|
public function index()
|
|
{
|
|
$page_title = 'API 文档';
|
|
View::assign('page_title', $page_title);
|
|
|
|
return View::fetch();
|
|
}
|
|
}
|