Skip to content

Commit ea3050c

Browse files
authored
Merge pull request #5 from pyobs/develop
v1.1.1
2 parents 57eed00 + 70118be commit ea3050c

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,14 @@ pyobs_archive/local_settings.py and override settings in the settings.py, like t
7575

7676
## Changelog
7777

78-
#### version 1.0 (2020-11-23)
78+
#### version 1.0.0 (2020-11-23)
7979
- Initial release
8080

81-
#### version 1.1
81+
#### version 1.1.0 (2020-12-04)
8282
- Added footer to page
83+
84+
### version 1.1.1 (2020-12-10)
85+
- Minor bugfix
8386

8487

8588
## Used packages

pyobs_archive/api/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _frame(frame_id):
5555

5656

5757
@api_view(['POST'])
58-
@authentication_classes([TokenAuthentication])
58+
@authentication_classes(AUTH_CLASSES)
5959
@permission_classes([IsAdminUser])
6060
def create_view(request):
6161
# loop all incoming files
@@ -78,7 +78,7 @@ def create_view(request):
7878

7979

8080
@api_view(['GET'])
81-
@authentication_classes([TokenAuthentication])
81+
@authentication_classes(AUTH_CLASSES)
8282
@permission_classes([IsAdminUser])
8383
def delete_view(request, frame_id):
8484
# get frame and filename

pyobs_archive/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.1'
1+
VERSION = '1.1.1'

0 commit comments

Comments
 (0)