mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-09-16 14:09:38 +02:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
58836c3c76 | ||
![]() |
b7a8f9e53d | ||
![]() |
afe081d3b5 |
@@ -1,7 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.3.2 (18/02/2021)
|
||||||
|
- [**closed**] /archive and /unarchive API routes return 404 [#77](https://github.com/sissbruecker/linkding/issues/77)
|
||||||
|
- [**closed**] API - /api/check_url?url= with token authetification [#55](https://github.com/sissbruecker/linkding/issues/55)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v1.3.1 (15/02/2021)
|
## v1.3.1 (15/02/2021)
|
||||||
*No changelog for this release.*
|
[enhancement] Enhance delete links with inline confirmation
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@@ -30,8 +30,11 @@ class BookmarkSerializer(serializers.ModelSerializer):
|
|||||||
'date_modified'
|
'date_modified'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# Override optional char fields to provide default value
|
||||||
|
title = serializers.CharField(required=False, allow_blank=True, default='')
|
||||||
|
description = serializers.CharField(required=False, allow_blank=True, default='')
|
||||||
# Override readonly tag_names property to allow passing a list of tag names to create/update
|
# Override readonly tag_names property to allow passing a list of tag names to create/update
|
||||||
tag_names = TagListField()
|
tag_names = TagListField(required=False, default=[])
|
||||||
|
|
||||||
def create(self, validated_data):
|
def create(self, validated_data):
|
||||||
bookmark = Bookmark()
|
bookmark = Bookmark()
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "linkding",
|
"name": "linkding",
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@@ -1 +1 @@
|
|||||||
1.3.2
|
1.3.3
|
Reference in New Issue
Block a user