jive-sdk
Version:
Node.js SDK for Jive Software to assist with the development of add-ons
14 lines (10 loc) • 321 B
JavaScript
var sampleOauth = require('./sampleOauth.js');
exports.authorizeUrl = {
'verb' : 'get',
'route': sampleOauth.authorizeUrl.bind(sampleOauth)
};
exports.oauth2Callback = {
'path' : '/{{{TILE_NAME_BASE}}}/oauth/oauth2Callback',
'verb' : 'get',
'route': sampleOauth.oauth2Callback.bind(sampleOauth)
};