mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 09:50:15 +01:00
✨ feat: Implement Favorites functionality with controllers, hooks, and UI components
This commit is contained in:
parent
28cdc06209
commit
d2faf9c67d
19 changed files with 588 additions and 76 deletions
|
|
@ -15,8 +15,11 @@ const {
|
|||
requireJwtAuth,
|
||||
} = require('~/server/middleware');
|
||||
|
||||
const settings = require('./settings');
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.use('/settings', settings);
|
||||
router.get('/', requireJwtAuth, getUserController);
|
||||
router.get('/terms', requireJwtAuth, getTermsStatusController);
|
||||
router.post('/terms/accept', requireJwtAuth, acceptTermsController);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue