1
0
Fork 0

move CORS allowance to the REST API router

This commit is contained in:
William Lahti 2018-06-28 20:23:26 -07:00 committed by Chocobozzz
parent b229e38d50
commit 12daa83784
2 changed files with 24 additions and 15 deletions

View File

@ -84,7 +84,8 @@ import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-sch
// ----------- App -----------
// Enable CORS
// Enable CORS for develop
if (isTestInstance()) {
app.use((req, res, next) => {
// These routes have already cors
if (
@ -100,6 +101,7 @@ app.use((req, res, next) => {
return next()
})
}
// For the logger
app.use(morgan('combined', {

View File

@ -8,9 +8,16 @@ import { accountsRouter } from './accounts'
import { videosRouter } from './videos'
import { badRequest } from '../../helpers/express-utils'
import { videoChannelRouter } from './video-channel'
import * as cors from 'cors'
const apiRouter = express.Router()
apiRouter.use(cors({
origin: '*',
exposedHeaders: 'Retry-After',
credentials: true
}))
apiRouter.use('/server', serverRouter)
apiRouter.use('/oauth-clients', oauthClientsRouter)
apiRouter.use('/config', configRouter)