2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 13:47:15 +08:00

feat: 移除插件作者字段

This commit is contained in:
耗子
2023-07-25 00:20:31 +08:00
parent 44ae4b9d67
commit 85db98ec10
11 changed files with 2 additions and 20 deletions

View File

@@ -41,7 +41,6 @@ func (r *PluginController) List(ctx http.Context) {
type plugin struct {
Name string `json:"name"`
Author string `json:"author"`
Description string `json:"description"`
Slug string `json:"slug"`
Version string `json:"version"`
@@ -62,7 +61,6 @@ func (r *PluginController) List(ctx http.Context) {
}
p = append(p, plugin{
Name: item.Name,
Author: item.Author,
Description: item.Description,
Slug: item.Slug,
Version: item.Version,