-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage information #8
Comments
With these packages, the user's _id does not change after sign-up, so it should be easy to determine a user's pre-signup behavior after they sign-up. You can also determine which users have signed up. Per the documentation for brettle:accounts-login-state, "On the server, LoginState.signedUp() itself takes an optional user argument (defaults to Meteor.user()) which you can use to determine whether a particular user has signed up". |
Thanks @brettle for your quick answer! I've read your documentation, cloned and have been testing your demo app. I notice the package does create a user on Meteor.users and, if tested for I found out that adding only On my tests on Meteor Shell, however, the
What is the correct way for testing it on Server? |
Yes, on the client or in a server method, However, I don't think the concept of "current user" is defined within Meteor Shell, so you need to call |
Dear @brettle ,
Thanks for the enormous effort put on these packages. Really an outstanding work!
I have an application where anonymous visitors can search for available dates and select rooms prior to sign-up. They can create an account only when they are ready to purchase and, only after properly signed-up is that they have access to discounts, promotions and to be able to continue with purchase process.
In this project, I want to track how many times certain Date ranges were searched for and the Drop Rate (how many anonymous users signed-up- and completed the process)
Do you think theses packages could be useful here? I want the anonymous users to have logged-in state only after sign-up. After sign-up, I want to relate previously anonymous _id behavior to the new signed-up user _id. Is it possible?
The text was updated successfully, but these errors were encountered: