mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Removed "ignoreDeadLinks" options and updated dead links
This commit is contained in:
@@ -285,5 +285,4 @@ export default defineConfig({
|
||||
text: "Edit this page on GitHub",
|
||||
},
|
||||
},
|
||||
ignoreDeadLinks: true,
|
||||
});
|
||||
|
||||
@@ -164,7 +164,7 @@ function Component() {
|
||||
:::
|
||||
|
||||
Calling `methods` on the server defines functions that can be called remotely by
|
||||
clients. They should return an [EJSON](./ejson)-able value or throw an
|
||||
clients. They should return an [EJSON](./EJSON)-able value or throw an
|
||||
exception. Inside your method invocation, `this` is bound to a method
|
||||
invocation object, which provides the following:
|
||||
|
||||
@@ -189,7 +189,7 @@ but without waiting for the round trip delay. If a stub throws an
|
||||
exception it will be logged to the console.
|
||||
|
||||
You use methods all the time, because the database mutators
|
||||
([`insert`](./mongo#insert), [`update`](./mongo#update), [`remove`](./mongo#remove)) are implemented
|
||||
([`insert`](./collections#Mongo-Collection-insert), [`update`](./collections#Mongo-Collection-update), [`remove`](./collections#Mongo-Collection-remove)) are implemented
|
||||
as methods. When you call any of these functions on the client, you're invoking
|
||||
their stub version that update the local cache, and sending the same write
|
||||
request to the server. When the server responds, the client updates the local
|
||||
|
||||
@@ -5,7 +5,7 @@ Passwordless package allows you to create a login for users without the need for
|
||||
The first step to in the passwordless process is for the user to sign-up or request a token to their email address. You can do that with the following:
|
||||
<ApiBox name="Accounts.requestLoginTokenForUser" from="accounts-base"/>
|
||||
|
||||
If the user is signing up you can pass in the `userData` object like in [Accounts.createUser](/api/passwords.html#Accounts-createUser).
|
||||
If the user is signing up you can pass in the `userData` object like in [Accounts.createUser](/api/accounts#Accounts-createUser).
|
||||
|
||||
<ApiBox name="Meteor.passwordlessLoginWithToken" />
|
||||
The second step in the passwordless flow. Like all the other `loginWith` functions call this method to login the user with the token they have inputted.
|
||||
|
||||
@@ -18,7 +18,7 @@ Here's how CoffeeScript works with Meteor's namespacing.
|
||||
they are defined.)
|
||||
|
||||
* When writing a package, CoffeeScript-defined variables can be
|
||||
exported like any other variable (see [Package.js](/api/packagejs.html)). Exporting a variable pulls it up to
|
||||
exported like any other variable (see [Package.js](/api/package)). Exporting a variable pulls it up to
|
||||
package scope, meaning that it will be visible to all of the code in
|
||||
your app or package (both `.js` and `.coffee` files).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user