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

24 lines
476 B

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