zahmis 4 лет назад
Родитель
Сommit
16a8f1d9bc
1 измененных файлов с 0 добавлено и 6 удалено
  1. 0 6
      src/server/routes/apiv3/slack-integration-settings.js

+ 0 - 6
src/server/routes/apiv3/slack-integration-settings.js

@@ -448,12 +448,6 @@ module.exports = (crowi) => {
    */
   router.delete('/slack-app-integration', validator.deleteIntegration, apiV3FormValidator, async(req, res) => {
     const SlackAppIntegration = mongoose.model('SlackAppIntegration');
-
-    const params = {
-      'slackbot:proxyServerUri': null,
-    };
-    crowi.configManager.updateConfigsInTheSameNamespace('crowi', params, true);
-
     const { integrationIdToDelete } = req.query;
     try {
       const response = await SlackAppIntegration.findOneAndDelete({ _id: integrationIdToDelete });