Revert "fix(api): title and url are required for bookmark edits"

Seems to still fail in CI????????????????

This reverts commit cce12fb138.
This commit is contained in:
Harsh Shandilya 2023-10-28 00:34:07 +05:30
parent ab01554b82
commit 2273768556
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -13,8 +13,8 @@ import kotlinx.serialization.Serializable
@Poko
class EditedBookmark(
val id: Int,
val url: String,
val title: String,
val url: String? = null,
val title: String? = null,
val excerpt: String? = null,
val author: String? = null,
val public: Int? = null,