From 6187c17097225b97fbe6fe8aa366afb583856527 Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Tue, 11 Apr 2017 22:21:28 +0200 Subject: [PATCH] readded inviteLink endpoint (#1369) --- src/util/Constants.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/Constants.js b/src/util/Constants.js index 21acc2ddf..d418b7ea1 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}` : ''}`, };