Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aoberoi/passport-slack

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aoberoi/passport-slack - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

3

dist/strategy.js

@@ -55,3 +55,4 @@ 'use strict';

};
if (params.team_name) team.name = params.team_name || params.team && params.team.name;
var teamName = params.team_name || params.team && params.team.name;
if (teamName) team.name = teamName;
var scopes = new Set(params.scope.split(','));

@@ -58,0 +59,0 @@ var extra = {};

{
"name": "@aoberoi/passport-slack",
"version": "1.0.4",
"version": "1.0.5",
"description": "Slack authentication strategy for Passport",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -24,3 +24,4 @@ import 'babel-polyfill';

};
if (params.team_name) team.name = params.team_name || (params.team && params.team.name);
const teamName = params.team_name || (params.team && params.team.name);
if (teamName) team.name = teamName;
const scopes = new Set(params.scope.split(','));

@@ -27,0 +28,0 @@ const extra = {};

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc