plugin customize author (#3963)
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:
heheer 2025-03-04 16:23:12 +08:00 committed by GitHub
parent 33617ab5dc
commit 576c60bd55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@ export type SystemPluginConfigSchemaType = {
templateType: string;
associatedPluginId: string;
userGuide: string;
author?: string;
};
};

View File

@ -18,6 +18,9 @@ const AppTemplateSchema = new Schema({
avatar: {
type: String
},
author: {
type: String
},
tags: {
type: [String],
default: undefined