Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3376022
D3414.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D3414.id.diff
View Options
diff --git a/server/src/server.js b/server/src/server.js
--- a/server/src/server.js
+++ b/server/src/server.js
@@ -58,9 +58,9 @@
const router = express.Router();
router.use('/images', express.static('images'));
- router.use('/commlanding/images', express.static('images'));
+ router.use(`${landingBaseRoutePath}images`, express.static('images'));
router.use('/fonts', express.static('fonts'));
- router.use('/commlanding/fonts', express.static('fonts'));
+ router.use(`${landingBaseRoutePath}fonts`, express.static('fonts'));
router.use('/misc', express.static('misc'));
router.use(
'/.well-known',
@@ -81,7 +81,7 @@
express.static('app_compiled', compiledFolderOptions),
);
router.use(
- '/commlanding/compiled',
+ `${landingBaseRoutePath}compiled`,
express.static('landing_compiled', compiledFolderOptions),
);
router.use('/', express.static('icons'));
@@ -97,7 +97,10 @@
);
}
- router.post('/commlanding/subscribe_email', emailSubscriptionResponder);
+ router.post(
+ `${landingBaseRoutePath}subscribe_email`,
+ emailSubscriptionResponder,
+ );
router.get(
'/create_version/:deviceType/:codeVersion',
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Nov 27, 9:54 PM (11 h, 3 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2591794
Default Alt Text
D3414.id.diff (1 KB)
Attached To
Mode
D3414: use landing base route path to construct endpoints
Attached
Detach File
Event Timeline
Log In to Comment