Skip to content

Commit

Permalink
Make client route indipended from plugin id (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei authored and jwilander committed Dec 5, 2018
1 parent aab20e8 commit 1779e10
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webapp/src/client/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@

import request from 'superagent';

import id from '../manifest';

export default class Client {
constructor() {
this.url = '/plugins/zoom';
this.url = '/plugins/' + id;
}

startMeeting = async (channelId, personal = true, topic = '', meetingId = 0) => {
Expand Down

0 comments on commit 1779e10

Please sign in to comment.