cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
22 lines (21 loc) • 729 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.notificationRoutesUrl = void 0;
/**
* Object containing URLs for notification-related endpoints.
* These URLs are used for various notification operations such as getting notifications, marking as read, etc.
*/
const notificationRoutesUrl = {
module: 'notifications',
/**
* Endpoint to get notifications (notifications)
*/
notifications: "notifications",
/**
* Endpoint to get unread count (unread-count)
*/
unreadCount: "unread-count",
};
exports.notificationRoutesUrl = notificationRoutesUrl;
// Freeze the notificationRoutesUrl object to prevent modifications
Object.freeze(notificationRoutesUrl);