996a1b988a
* Got the basis covered, now I need to style all this * Corrected and upgraded Share window * Changed the routes again, and set correct design * Made some of the requested changes * Removed PreviewFrame errors * Redesigned Preview Header * Corrected style of the FullView * Corrected most of the css mistakes * Corrected logo size
9 lines
295 B
JavaScript
9 lines
295 B
JavaScript
import { Router } from 'express';
|
|
import * as EmbedController from '../controllers/embed.controller';
|
|
|
|
const router = new Router();
|
|
|
|
router.get('/:username/embed/:project_id', EmbedController.serveProject);
|
|
router.get('/embed/:project_id', EmbedController.serveProject);
|
|
|
|
export default router;
|