mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
353 B
JavaScript
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');
|
|
});
|