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.3 to 1.0.4

4

dist/strategy.js

@@ -53,5 +53,5 @@ 'use strict';

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

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

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

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

@@ -22,5 +22,5 @@ import 'babel-polyfill';

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

@@ -27,0 +27,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