|
|
@@ -22,7 +22,6 @@ const logger = loggerFactory('growi:routes:apiv3:slack-integration-settings');
|
|
|
|
|
|
const router = express.Router();
|
|
|
|
|
|
-const OFFICIAL_SLACKBOT_PROXY_URI = 'https://slackbot-proxy.growi.org';
|
|
|
|
|
|
/**
|
|
|
* @swagger
|
|
|
@@ -110,11 +109,6 @@ module.exports = (crowi) => {
|
|
|
'slackbot:proxyUri': null,
|
|
|
};
|
|
|
|
|
|
- // set url if officialBot is specified
|
|
|
- if (initializedType === SlackbotType.OFFICIAL) {
|
|
|
- params['slackbot:proxyUri'] = OFFICIAL_SLACKBOT_PROXY_URI;
|
|
|
- }
|
|
|
-
|
|
|
return updateSlackBotSettings(params);
|
|
|
}
|
|
|
|