From 7ed83cf67f65a52534047aa276fd426777ad682c Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Tue, 11 Apr 2017 19:04:06 +0200 Subject: [PATCH] readded inviteLink endpoint --- src/util/Constants.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/Constants.js b/src/util/Constants.js index 21acc2ddf842..d418b7ea19ec 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -206,6 +206,7 @@ const Endpoints = exports.Endpoints = { bot: '/gateway/bot', }, Invite: inviteID => `/invite/${inviteID}`, + inviteLink: id => `https://discord.gg/${id}`, Webhook: (webhookID, token) => `/webhooks/${webhookID}${token ? `/${token}` : ''}`, };