From b5a69328367188d945fd291185c787ddd0868f4d Mon Sep 17 00:00:00 2001 From: Vaughn Iverson Date: Fri, 1 Apr 2016 09:51:15 -0700 Subject: [PATCH] Update README --- README.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 =======