-
Notifications
You must be signed in to change notification settings - Fork 80
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
track time a new user account was requested #3378
Comments
This will be great. I think also having a button to purge non-validated users (all or one by one) will be really useful - sometimes this happens when the user inputs their email incorrectly. Anyway, FWIW, we normally track this information using the https://qiita.ucsd.edu/stats/ information; in summary: We have a nightly cron-job that updates the information in redis and inserts that version into SQL; then we can see how many new users, studies, samples, etc have been created in those dates. |
If I read the SQL statement correctly, you simply count the number of rows of table Lines 1265 to 1268 in 13eafdf
Isn't redis an in memory DB? What if the machine fails? Do you have backups on disk or would you loose the user growth information? Would you mind if I add another column to |
|
Thinking about performance indicators, it would be nice to show an increase in validated users over time. Is there any information about when a user account was created or validated? If not, are there arguments against tracking this in the database?
I am not sure what your mechanism for validating a newly registered user is, I'd love to have a simple admin page with all registered but not validated accounts with a tickbox and one submit button which would than issue the validating action of all ticked users. I figure it would also be useful to sort this list according on registration date.
The text was updated successfully, but these errors were encountered: