The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-custom-oauth/package.js

28 lines
595 B

Package.describe({
name: 'rocketchat:custom-oauth',
summary: 'Custom OAuth flow',
version: '1.0.0'
});
Package.onUse(function(api) {
api.use('modules');
api.use('check');
api.use('oauth');
api.use('oauth2');
api.use('underscore');
api.use('ecmascript');
api.use('accounts-oauth');
api.use('service-configuration');
api.use('underscorestring:underscore.string');
api.use('templating', 'client');
api.use('http', 'server');
api.mainModule('client/custom_oauth_client.js', 'client');
api.mainModule('server/custom_oauth_server.js', 'server');
api.export('CustomOAuth');
});