mirror of
https://github.com/certd/certd.git
synced 2026-04-23 11:37:23 +08:00
chore: 新增插件额外配置功能
- 在插件管理中添加 extra 字段,用于存储额外配置信息 - 实现插件编辑页面的额外配置编辑功能 - 更新数据库结构,增加 extra 列 - 优化代码编辑器的导入方式 - 更新 fast-crud 相关包版本
This commit is contained in:
@@ -44,6 +44,9 @@ export class PluginEntity {
|
||||
@Column({ comment: '元数据', length: 40960, nullable: true })
|
||||
metadata: string;
|
||||
|
||||
@Column({ comment: '额外配置', length: 40960, nullable: true })
|
||||
extra: string;
|
||||
|
||||
@Column({ comment: '作者', length: 100, nullable: true })
|
||||
author: string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user