Merge pull request #110 from diaspora/cmrd-senya-patch-1
Entities JSON schema: width & height are optional
This commit is contained in:
commit
48bb0a094e
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
# 0.2.6
|
||||||
|
|
||||||
|
## Bug fixes
|
||||||
|
|
||||||
|
* Make `width` and `height` optional for photos in the JSON schema [#110](https://github.com/diaspora/diaspora_federation/pull/110)
|
||||||
|
|
||||||
# 0.2.5
|
# 0.2.5
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
|
||||||
|
|
@ -288,7 +288,7 @@
|
||||||
"height": {"type": "number"}
|
"height": {"type": "number"}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name", "width", "height"
|
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -288,7 +288,7 @@
|
||||||
"height": {"type": "number"}
|
"height": {"type": "number"}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name", "width", "height"
|
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue