From b6e68075d796cda0963f1ccecb808e56fcbcb37b Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Tue, 27 Feb 2024 20:31:58 -0300 Subject: [PATCH] Update accounts docs --- packages/accounts-base/accounts_common.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/accounts-base/accounts_common.js b/packages/accounts-base/accounts_common.js index 4984c6b5a4..86f8ce8bec 100644 --- a/packages/accounts-base/accounts_common.js +++ b/packages/accounts-base/accounts_common.js @@ -419,14 +419,14 @@ export class AccountsCommon { /** * @summary Get the current user id, or `null` if no user is logged in. A reactive data source. - * @locus Anywhere but publish functions + * @locus Anywhere * @importFromPackage meteor */ Meteor.userId = () => Accounts.userId(); /** * @summary Get the current user record, or `null` if no user is logged in. A reactive data source. - * @locus Anywhere but publish functions + * @locus Anywhere * @importFromPackage meteor * @param {Object} [options] * @param {MongoFieldSpecifier} options.fields Dictionary of fields to return or exclude. @@ -435,7 +435,7 @@ Meteor.user = options => Accounts.user(options); /** * @summary Get the current user record, or `null` if no user is logged in. A reactive data source. - * @locus Anywhere but publish functions + * @locus Anywhere * @importFromPackage meteor * @param {Object} [options] * @param {MongoFieldSpecifier} options.fields Dictionary of fields to return or exclude.