Erster Aufbau Forum
This commit is contained in:
@@ -24,8 +24,8 @@ router.get('/guestbook/entries/:username/:page', authenticate, socialNetworkCont
|
||||
router.delete('/guestbook/entries/:entryId', authenticate, socialNetworkController.deleteGuestbookEntry);
|
||||
router.get('/guestbook/image/:guestbookUserName/:entryId', authenticate, socialNetworkController.getGuestbookImage);
|
||||
router.post('/diary', authenticate, socialNetworkController.createDiaryEntry);
|
||||
router.put('/diary/:diaryId', authenticate, socialNetworkController.updateDiaryEntry);
|
||||
router.delete('/diary/:diaryId', authenticate, socialNetworkController.deleteDiaryEntry);
|
||||
router.get('/diary/:userId', authenticate, socialNetworkController.getDiaryEntries);
|
||||
router.put('/diary/:diaryEntryId', authenticate, socialNetworkController.updateDiaryEntry);
|
||||
router.delete('/diary/:entryId', authenticate, socialNetworkController.deleteDiaryEntry);
|
||||
router.get('/diary/:page', authenticate, socialNetworkController.getDiaryEntries);
|
||||
|
||||
export default router;
|
||||
|
||||
Reference in New Issue
Block a user