Skip to content

Commit 52d3783

Browse files
authored
Merge pull request #2413 from RedisInsight/be/feature/remove-unnecessary-code
remove unnecessary code related to callback auth
2 parents 3fb15ec + 39974bc commit 52d3783

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

electron-builder.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
"files": [
66
"dist",
77
"node_modules",
8-
"package.json",
9-
{
10-
"from": "api/views",
11-
"to": "dist/views"
12-
}
8+
"package.json"
139
],
1410
"afterSign": "electron-builder-notarize",
1511
"artifactName": "${productName}-${os}-${arch}.${ext}",

redisinsight/api/config/default.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@ export default {
6464
appVersion: process.env.APP_VERSION || '2.30.0',
6565
requestTimeout: parseInt(process.env.REQUEST_TIMEOUT, 10) || 25000,
6666
excludeRoutes: [],
67-
excludeAuthRoutes: [
68-
{ path: 'cloud/oauth/callback', method: RequestMethod.GET },
69-
],
67+
excludeAuthRoutes: [],
7068
},
7169
sockets: {
7270
cors: process.env.SOCKETS_CORS ? process.env.SOCKETS_CORS === 'true' : false,

redisinsight/api/nest-cli.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
"include": "../static/**/*",
88
"outDir": "dist/static"
99
},
10-
{
11-
"include": "../views/**/*",
12-
"outDir": "dist/views"
13-
},
1410
{
1511
"include": "../defaults/**/*",
1612
"outDir": "dist/defaults"

0 commit comments

Comments
 (0)