Skip to content

Commit

Permalink
add live-blog as a valid content type (#732)
Browse files Browse the repository at this point in the history
add live-blog as a valid content type
  • Loading branch information
apaleslimghost authored Jan 22, 2020
2 parents ab9f5d6 + 2a4b2ff commit db0b7fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/dotcom-server-app-context/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The type or sub-type of the content on the current page

Additional restrictions:

* Regex pattern: `^(article|video|audio|podcast|package)$`
* Regex pattern: `^(article|video|audio|podcast|package|live-blog)$`

## `edition` (string)

Expand Down
4 changes: 2 additions & 2 deletions packages/dotcom-server-app-context/src/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
"contentType": {
"type": "string",
"description": "The type or sub-type of the content on the current page",
"examples": ["article", "video", "audio", "podcast", "package"],
"pattern": "^(article|video|audio|podcast|package)$"
"examples": ["article", "video", "audio", "podcast", "package", "live-blog"],
"pattern": "^(article|video|audio|podcast|package|live-blog)$"
},
"edition": {
"type": "string",
Expand Down

0 comments on commit db0b7fc

Please sign in to comment.