Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hot fix added quote route [no version change required] #55

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/routes/v4/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,22 @@ import passwordRoutes from './textUtilities/password.js';
*/
router.use('/password', passwordRoutes);

import quoteRoutes from './textUtilities/quote.js';

/**
* @api {use} v4/quote Use Quote Routes
* @apiDescription Mount the quote-related routes for handling text utilities.
* @apiName UseQuoteRoutes
* @apiGroup Routes
*
* @apiSuccess {Object} routes Quote-related routes mounted on the parent router.
*
* @function createQuoteRoutes
* @description Creates and returns a set of routes for handling text utilities related to quotes.
* @returns {Object} Quote-related routes.
*/
router.use('/quote', quoteRoutes);

import uvuifyRoutes from './textUtilities/uvuify.js';

/**
Expand Down
Loading