mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
plugin customize author (#3963)
Some checks are pending
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Waiting to run
Some checks are pending
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Waiting to run
* plugin customize author * fix name
This commit is contained in:
parent
33617ab5dc
commit
576c60bd55
|
|
@ -25,6 +25,7 @@ export type SystemPluginConfigSchemaType = {
|
|||
templateType: string;
|
||||
associatedPluginId: string;
|
||||
userGuide: string;
|
||||
author?: string;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -18,6 +18,9 @@ const AppTemplateSchema = new Schema({
|
|||
avatar: {
|
||||
type: String
|
||||
},
|
||||
author: {
|
||||
type: String
|
||||
},
|
||||
tags: {
|
||||
type: [String],
|
||||
default: undefined
|
||||
|
|
|
|||
Loading…
Reference in New Issue