diff --git a/plugin.json b/plugin.json index 1740c968..31465f1c 100644 --- a/plugin.json +++ b/plugin.json @@ -1,5 +1,5 @@ { - "id": "com.mattermost.zoom", + "id": "zoom", "name": "Zoom", "description": "Zoom audio and video conferencing plugin for Mattermost 5.2+.", "version": "1.0.2", diff --git a/server/manifest.go b/server/manifest.go index 92151161..df14d314 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -1,12 +1,9 @@ -// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. -// See License for license information. - package main var manifest = struct { Id string Version string }{ - Id: "com.mattermost.zoom", + Id: "zoom", Version: "1.0.2", } diff --git a/webapp/src/manifest.js b/webapp/src/manifest.js index 056a1989..1aa25f49 100644 --- a/webapp/src/manifest.js +++ b/webapp/src/manifest.js @@ -1,5 +1,2 @@ -// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. -// See License for license information. - -export const id = 'com.mattermost.zoom'; +export const id = 'zoom'; export const version = '1.0.2';