Browse Source

fix GrowiPlugin schema

Yuki Takei 3 years ago
parent
commit
3c78bd557d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/app/src/server/models/growi-plugin.ts

+ 1 - 0
packages/app/src/server/models/growi-plugin.ts

@@ -18,6 +18,7 @@ export interface GrowiPluginModel extends Model<GrowiPluginDocument> {
 
 const growiPluginMetaThemesSchema = new Schema<GrowiCustomThemeSummary>({
   name: { type: String, required: true },
+  manifestKey: { type: String, required: true },
   schemeType: {
     type: String,
     enum: GrowiThemeSchemeType,