Add the new fields to the admin API
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
bb01f7d62d
commit
e814aacb86
@ -76,6 +76,14 @@ ClientRouter.route("/")
|
|||||||
type: Types.STRING,
|
type: Types.STRING,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
featured: {
|
||||||
|
type: Types.BOOLEAN,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
type: Types.STRING,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
true
|
true
|
||||||
),
|
),
|
||||||
@ -153,6 +161,14 @@ ClientRouter.route("/:id")
|
|||||||
type: Types.STRING,
|
type: Types.STRING,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
featured: {
|
||||||
|
type: Types.BOOLEAN,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
type: Types.STRING,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
true
|
true
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user