Skip to content

Update Plugin

Update config.yml

Please change config to the latest structure

Update slack app manifest

Go to the app_manifest page, change the JSON to the following manifest and save it. After saving, you may be asked to reinstall the app

update_manifest

App Manifest
{
  "display_information": {
    "name": "Minecraft server",
    "description": "with Slack Integration plugin",
    "background_color": "#49992c"
  },
  "features": {
    "app_home": {
      "home_tab_enabled": true,
      "messages_tab_enabled": false,
      "messages_tab_read_only_enabled": true
    },
    "bot_user": {
      "display_name": "Minecraft server",
      "always_online": true
    },
    "slash_commands": [
      {
        "command": "/mcserver",
        "description": "minecraft server command",
        "usage_hint": "time set day",
        "should_escape": false
      }
    ]
  },
  "oauth_config": {
    "scopes": {
      "bot": [
        "channels:history",
        "channels:write.topic",
        "chat:write",
        "chat:write.customize",
        "users:read",
        "commands"
      ]
    }
  },
  "settings": {
    "event_subscriptions": {
      "bot_events": [
        "app_home_opened",
        "message.channels"
      ]
    },
    "interactivity": {
      "is_enabled": true
    },
    "org_deploy_enabled": false,
    "socket_mode_enabled": true,
    "token_rotation_enabled": false
  }
}