mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
9 lines
264 B
JavaScript
9 lines
264 B
JavaScript
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
|
|
module.exports = ({ configuration, options }) =>
|
|
Boolean(_.get(configuration, 'org') || options.org) &&
|
|
Boolean(_.get(configuration, 'app') || options.app) &&
|
|
!_.get(configuration, 'dashboard.disableMonitoring');
|