Files
meteor/packages/deprecated/google/package.js
2021-06-24 15:18:36 +02:00

15 lines
353 B
JavaScript

Package.describe({
summary: "DEPRECATED - Use google-oauth instead - Google OAuth flow",
version: "1.2.0",
deprecated: 'Use google-oauth instead',
documentation: null
});
Package.onUse(function(api) {
api.use('google-oauth');
api.use('google-config-ui', 'client');
api.imply('google-oauth');
api.addFiles('deprecation_notice.js');
});