forked from RocketChat/Rocket.Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* develop: Regression: Various search provider fixes (RocketChat#10591) Fix /api/v1/settings.oauth not sending needed info for SAML & CAS (RocketChat#10596) Fix the Apps and Livechats not getting along well with each other (RocketChat#10598) [FIX] Missing "Administration" menu for users with some administration permissions (RocketChat#10551) [FIX] Member list search with no results (RocketChat#10599) Adds Visual Studio Code debugging configuration (RocketChat#10586) [FIX] Integrations with room data not having the usernames filled in (RocketChat#10576)
- Loading branch information
Showing
18 changed files
with
142 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Attach to meteor debug", | ||
"type": "node", | ||
"request": "attach", | ||
"port": 9229, | ||
"address": "localhost", | ||
"restart": false, | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"meteor://💻app/packages/rocketchat:*": "${workspaceFolder}/packages/rocketchat-*" | ||
}, | ||
"protocol": "inspector" | ||
}, | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "Frontend (Chrome)", | ||
"url": "http://localhost:3000", | ||
"webRoot": "${workspaceFolder}", | ||
"sourceMapPathOverrides": { | ||
"meteor://💻app/packages/rocketchat:*": "${workspaceFolder}/packages/rocketchat-*" | ||
} | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Server (debug)", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": [ | ||
"run", | ||
"debug" | ||
], | ||
"port": 9229, | ||
"timeout": 300000, //Rocket.Chat really takes some time to startup, so play it safe | ||
"sourceMapPathOverrides": { | ||
"meteor://💻app/packages/rocketchat:*": "${workspaceFolder}/packages/rocketchat-*" | ||
}, | ||
"protocol": "inspector", | ||
"env": { | ||
"USE_UNRELEASED_ROCKETAPPS_FRAMEWORK": "true" | ||
} | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Server (debug-brk)", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": [ | ||
"run", | ||
"debug-brk" | ||
], | ||
"port": 9229, | ||
"timeout": 300000, //Rocket.Chat really takes some time to startup, so play it safe | ||
"sourceMapPathOverrides": { | ||
"meteor://💻app/packages/rocketchat:*": "${workspaceFolder}/packages/rocketchat-*" | ||
}, | ||
"protocol": "inspector", | ||
"env": { | ||
"USE_UNRELEASED_ROCKETAPPS_FRAMEWORK": "true" | ||
} | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Server (Testmode)", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": [ | ||
"run", | ||
"debug" | ||
], | ||
"port": 9229, | ||
"timeout": 300000, //Rocket.Chat really takes some time to startup, so play it safe | ||
"sourceMapPathOverrides": { | ||
"meteor://💻app/packages/rocketchat:*": "${workspaceFolder}/packages/rocketchat-*" | ||
}, | ||
"env": { | ||
"TEST_MODE": "true" | ||
}, | ||
"protocol": "inspector" | ||
} | ||
], | ||
"compounds": [ | ||
{ | ||
"name": "Server + Frontend", | ||
"configurations": [ | ||
"Server (debug-brk)", | ||
"Frontend (Chrome)" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/chatpal-search/server/asset/chatpal-logo-icon-darkblue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 0 additions & 15 deletions
15
packages/chatpal-search/server/asset/chatpal-logo-icon-lightblue.svg
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
/* globals Inject */ | ||
|
||
Inject.rawBody('chatpal-enter', Assets.getText('server/asset/chatpal-enter.svg')); | ||
Inject.rawBody('chatpal-logo-icon-lightblue', Assets.getText('server/asset/chatpal-logo-icon-lightblue.svg')); | ||
Inject.rawBody('chatpal-logo-icon-darkblue', Assets.getText('server/asset/chatpal-logo-icon-darkblue.svg')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters