mirror of
https://github.com/cnodejs/nodeclub.git
synced 2026-02-01 16:34:28 +00:00
8 lines
230 B
JavaScript
8 lines
230 B
JavaScript
var config = require('../config').config;
|
|
|
|
exports.github = function (req, res, next) {
|
|
if (config.GITHUB_OAUTH.clientID === 'your GITHUB_CLIENT_ID') {
|
|
return res.send('call the admin to set github oauth.');
|
|
}
|
|
next();
|
|
}; |