diff --git a/README.markdown b/README.markdown index 5bad225..ceb7f4e 100644 --- a/README.markdown +++ b/README.markdown @@ -16,7 +16,9 @@ Authentication ============== Built-in authentication support was removed in ddp 0.7.0 due to changes in Meteor version 0.8.2. -One can authenticate using plain-text logins as follows: +DDP Authentication is now implemented by [vsivsi/ddp-login](https://github.com/vsivsi/ddp-login). + +A quick and dirty (but insecure) alternative is to use plain-text logins via a method call: ```js // logging in with e-mail @@ -30,8 +32,6 @@ ddpclient.call("login", [ ], function (err, result) { ... }); ``` -You can also use [vsivsi/ddp-login](https://github.com/vsivsi/ddp-login). - Example =======