Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into imports/wave-8-mai…
Browse files Browse the repository at this point in the history
…n-module-autocomplete

# Conflicts:
#	packages/meteor-accounts-saml/package.js
#	packages/meteor-accounts-saml/server/saml_utils.js
  • Loading branch information
rodrigok committed Nov 1, 2018
2 parents 1489ec6 + c5a14f2 commit 8e8fe19
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 8 additions & 0 deletions packages/meteor-accounts-saml/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ Package.describe({
Package.on_use(function(api) {
api.use([
'ecmascript',
'http',
'accounts-base',
]);
api.use([
'routepolicy',
'webapp',
'rocketchat:lib',
'service-configuration',
], 'server');

api.mainModule('client/index.js', 'client');
api.mainModule('server/index.js', 'server');
Expand Down
6 changes: 1 addition & 5 deletions packages/meteor-accounts-saml/server/saml_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import array2string from 'arraybuffer-to-string';
// var prefixMatch = new RegExp(/(?!xmlns)^.*:/);


const SAML = function(options) {
export const SAML = function(options) {
this.options = this.initialize(options);
};

Expand Down Expand Up @@ -545,7 +545,3 @@ SAML.prototype.generateServiceProviderMetadata = function(callbackUrl) {
newline: '\n',
});
};

export {
SAML,
};

0 comments on commit 8e8fe19

Please sign in to comment.