cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
26 lines (25 loc) • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.accountsRoutesUrl = void 0;
/**
* Object containing URLs for authentication-related endpoints.
* These URLs are used for various authentication operations such as sign-in, sign-out, etc.
*/
const accountsRoutesUrl = {
module: 'accounts',
/** Endpoint to get accounts year (accounts-year)
* for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
*/
financialYear: "financial-year",
/**
* Endpoint to get accounts year mapping (accounts-year-mapping)
*/
financialYearMapping: "financial-year-mapping",
/**
* Endpoint to manage financial configuration (financial-config)
*/
financialConfig: "financial-config",
};
exports.accountsRoutesUrl = accountsRoutesUrl;
// Freeze the accountsRoutesUrl object to prevent modifications
Object.freeze(accountsRoutesUrl);