Merge branch 'hotfix/21.56.9' into master
[gitter.git] / server / api / private / subscription-created.js
blobe56ea33e377caa597df7f907a54010f085f9c7d5
1 'use strict';
3 var repoPremiumStatusNotifier = require('../../services/repo-premium-status-notifier');
5 /**
6  * This is a simple notification webhook from billing.gitter.im to let us
7  * know when a subscription has been created.
8  *
9  * This endpoint is not secured, so don't use it for anything important YET!
10  */
11 module.exports = function(req, res, next) {
12   return repoPremiumStatusNotifier(req.params.userOrOrg, true) // Is premium
13     .then(function() {
14       res.send('OK');
15     })
16     .catch(next);