UNPKG

@sync-in/server

Version:

The secure, open-source platform for file storage, sharing, collaboration, and sync

41 lines (40 loc) 1.38 kB
/* * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com> * This file is part of Sync-in | The open source file sync and share solution * See the LICENSE file for licensing details */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: Object.getOwnPropertyDescriptor(all, name).get }); } _export(exports, { get API_PUBLIC_LINK_ACCESS () { return API_PUBLIC_LINK_ACCESS; }, get API_PUBLIC_LINK_AUTH () { return API_PUBLIC_LINK_AUTH; }, get API_PUBLIC_LINK_VALIDATION () { return API_PUBLIC_LINK_VALIDATION; }, get PUBLIC_LINKS_ROUTE () { return PUBLIC_LINKS_ROUTE; } }); const _applicationsconstants = require("../../applications.constants"); const PUBLIC_LINKS_ROUTE = { BASE: `${_applicationsconstants.APP_BASE_ROUTE}/link`, LINK: 'link', VALIDATION: 'validation', ACCESS: 'access', AUTH: 'auth' }; const API_PUBLIC_LINK_VALIDATION = `${PUBLIC_LINKS_ROUTE.BASE}/${PUBLIC_LINKS_ROUTE.VALIDATION}`; const API_PUBLIC_LINK_ACCESS = `${PUBLIC_LINKS_ROUTE.BASE}/${PUBLIC_LINKS_ROUTE.ACCESS}`; const API_PUBLIC_LINK_AUTH = `${PUBLIC_LINKS_ROUTE.BASE}/${PUBLIC_LINKS_ROUTE.AUTH}`; //# sourceMappingURL=routes.js.map