mirror of https://github.com/Chocobozzz/PeerTube
move CORS allowance to the REST API router
parent
b229e38d50
commit
12daa83784
|
@ -84,8 +84,9 @@ import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-sch
|
||||||
|
|
||||||
// ----------- App -----------
|
// ----------- App -----------
|
||||||
|
|
||||||
// Enable CORS
|
// Enable CORS for develop
|
||||||
app.use((req, res, next) => {
|
if (isTestInstance()) {
|
||||||
|
app.use((req, res, next) => {
|
||||||
// These routes have already cors
|
// These routes have already cors
|
||||||
if (
|
if (
|
||||||
req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 &&
|
req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 &&
|
||||||
|
@ -99,7 +100,8 @@ app.use((req, res, next) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return next()
|
return next()
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// For the logger
|
// For the logger
|
||||||
app.use(morgan('combined', {
|
app.use(morgan('combined', {
|
||||||
|
|
|
@ -8,9 +8,16 @@ import { accountsRouter } from './accounts'
|
||||||
import { videosRouter } from './videos'
|
import { videosRouter } from './videos'
|
||||||
import { badRequest } from '../../helpers/express-utils'
|
import { badRequest } from '../../helpers/express-utils'
|
||||||
import { videoChannelRouter } from './video-channel'
|
import { videoChannelRouter } from './video-channel'
|
||||||
|
import * as cors from 'cors'
|
||||||
|
|
||||||
const apiRouter = express.Router()
|
const apiRouter = express.Router()
|
||||||
|
|
||||||
|
apiRouter.use(cors({
|
||||||
|
origin: '*',
|
||||||
|
exposedHeaders: 'Retry-After',
|
||||||
|
credentials: true
|
||||||
|
}))
|
||||||
|
|
||||||
apiRouter.use('/server', serverRouter)
|
apiRouter.use('/server', serverRouter)
|
||||||
apiRouter.use('/oauth-clients', oauthClientsRouter)
|
apiRouter.use('/oauth-clients', oauthClientsRouter)
|
||||||
apiRouter.use('/config', configRouter)
|
apiRouter.use('/config', configRouter)
|
||||||
|
|
Loading…
Reference in New Issue