Skip to content

Commit 545eefe

Browse files
committed
Disable authentication on endpoints for testing purposes
1 parent 1ed2654 commit 545eefe

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
authors_put:
22
path: /authors/{id}
33
controller: MyLibrary\Apps\Librarify\Backend\Controller\Authors\AuthorsPutController
4-
defaults: { auth: true }
5-
methods: [PUT]
4+
defaults: { auth: false }
5+
methods: [PUT]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
books_put:
22
path: /books/{id}
33
controller: MyLibrary\Apps\Librarify\Backend\Controller\Books\BooksPutController
4-
defaults: { auth: true }
5-
methods: [PUT]
4+
defaults: { auth: false }
5+
methods: [PUT]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
categories_put:
22
path: /categories/{id}
33
controller: MyLibrary\Apps\Librarify\Backend\Controller\Categories\CategoriesPutController
4-
defaults: { auth: true }
5-
methods: [PUT]
4+
defaults: { auth: false }
5+
methods: [PUT]

0 commit comments

Comments
 (0)