We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need a way to keep track of user activeness on the backend.
Acceptance Criteria
activeness_probes
id
user_id
probe_initiated
last_reminder_sent_at
reminders_sent
response
We keep track of user activeness in user_activity, so that's where we can get activeness info from.
user_activity
The text was updated successfully, but these errors were encountered:
aapeliv
No branches or pull requests
We need a way to keep track of user activeness on the backend.
Acceptance Criteria
activeness_probes
id
column from the user table (i.e. theuser_id
)probe_initiated
(timestamp) that's the time when the probe was startedlast_reminder_sent_at
(timestamp), defaults to nullreminders_sent
(integer) defaults to 0, which counts number of emails sentresponse
(enum) defaults to nullWe keep track of user activeness in
user_activity
, so that's where we can get activeness info from.The text was updated successfully, but these errors were encountered: