Add the new fields to the admin API
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Fabian Stamm 2020-12-20 00:04:09 +01:00
parent bb01f7d62d
commit e814aacb86
1 changed files with 16 additions and 0 deletions

View File

@ -76,6 +76,14 @@ ClientRouter.route("/")
type: Types.STRING,
optional: true,
},
featured: {
type: Types.BOOLEAN,
optional: true,
},
description: {
type: Types.STRING,
optional: true,
},
},
true
),
@ -153,6 +161,14 @@ ClientRouter.route("/:id")
type: Types.STRING,
optional: true,
},
featured: {
type: Types.BOOLEAN,
optional: true,
},
description: {
type: Types.STRING,
optional: true,
},
},
true
),