Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: isObjectId removed from schema to allow external assets to be added (fixes #309) #310

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions schema/component.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"properties": {
"mp4": {
"type": "string",
"isObjectId": true,
"title": "MP4 source",
"_backboneForms": {
"type": "Asset",
Expand All @@ -49,7 +48,6 @@
},
"ogv": {
"type": "string",
"isObjectId": true,
"title": "OGV source",
"_backboneForms": {
"type": "Asset",
Expand All @@ -58,7 +56,6 @@
},
"webm": {
"type": "string",
"isObjectId": true,
"title": "WebM source",
"_backboneForms": {
"type": "Asset",
Expand All @@ -67,7 +64,6 @@
},
"mp3": {
"type": "string",
"isObjectId": true,
"title": "MP3 source",
"_backboneForms": {
"type": "Asset",
Expand All @@ -94,7 +90,6 @@
},
"poster": {
"type": "string",
"isObjectId": true,
"title": "Poster frame",
"description": "Image displayed before the video is played (except on Vimeo)",
"_backboneForms": {
Expand All @@ -115,7 +110,7 @@
},
"src": {
"type": "string",
"isObjectId": true,

"title": "WebVTT source",
"_backboneForms": {
"type": "Asset",
Expand Down Expand Up @@ -270,7 +265,6 @@
},
"transcriptLink": {
"type": "string",
"isObjectId": true,
"title": "Linked transcript file source",
"_backboneForms": {
"type": "Asset",
Expand Down
Loading