diff options
author | anonymous | 2022-09-21 12:46:08 -0400 |
---|---|---|
committer | anonymous | 2022-09-21 12:46:08 -0400 |
commit | e8fea737dd6baaca9ddcb3917af1af08729bd938 (patch) | |
tree | d7083cf3e7c8e73c155a2cb86902532f0b3ecf57 | |
parent | 5ae06038ffe150638ac472e4c643fdee6dd202d6 (diff) |
Update README.md
-rw-r--r-- | README.md | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -26,12 +26,8 @@ const queryID = await graffiti.subscribe({ // And then unsubscribe to those queries await graffiti.unsubscribe(queryID) -// You can log in and out and check your logged-in status -graffiti.logIn() -graffiti.logOut() -if (graffiti.loggedIn) { - // ... -} +// You can toggle logging in and out +graffiti.toggleLogIn() // When you are logged in you can reference your user ID console.log(graffiti.myID) |