File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1313 api : ${{ steps.filter.outputs.api }}
1414 question : ${{ steps.filter.outputs.question }}
1515 user : ${{ steps.filter.outputs.user }}
16+ matching : ${{ steps.filter.outputs.matching }}
17+ session : ${{ steps.filter.outputs.session }}
1618 steps :
1719 - uses : actions/checkout@v3
1820 - uses : dorny/paths-filter@v2
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const app = express();
1010const PORT = process . env . PORT || 5001 ; // 5001 to prevent conflicts
1111
1212app . use ( express . json ( ) ) ;
13- app . use ( cors ( ) ) ; // config cors so that front-end can use.
13+ app . use ( cors ( ) ) ; // config cors so that front-end can use
1414app . options ( "*" , cors ( ) ) ;
1515
1616const apiVersion = "/api/v1" ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const setupWSConnection = require("y-websocket/bin/utils").setupWSConnection;
1010export const allowedOrigins = [ "*" ] ;
1111
1212/**
13- * Server INITIALIZATION and CONFIGURATION
13+ * Server INITIALIZATION and CONFIGURATION.
1414 * CORS configuration
1515 * Request body parsing
1616 */
@@ -23,7 +23,7 @@ app.use(
2323 credentials : true ,
2424 } )
2525) ;
26- app . use ( express . json ( ) ) ;
26+ app . use ( express . json ( ) ) ; //
2727
2828/**
2929 * Create an http server
You can’t perform that action at this time.
0 commit comments