Skip to content
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

🌟Check-In Time: Record the exact time when an attendee checks in #308

Open
trashken opened this issue Dec 4, 2024 · 8 comments
Open
Labels
enhancement New feature or request

Comments

@trashken
Copy link

trashken commented Dec 4, 2024

ℹ️ Please check if the feature you're requesting already exists in the project's roadmap or issues.

Is your feature request related to a problem? Please describe.
Unable to find the check-in time for each attendee.

Describe the solution you'd like
Display the check-in time and checkout-time for each attendee

Additional context

@trashken trashken added the enhancement New feature or request label Dec 4, 2024
@daveearley
Copy link
Contributor

Good suggestion! Thank you. This data is stored in the DB, so it will be easy to display.

@trashken
Copy link
Author

trashken commented Dec 5, 2024

the current version doesn't seem to record the check-in time in the attendees table.
Screenshot 2024-12-05 154008

@trashken
Copy link
Author

trashken commented Dec 6, 2024

Good suggestion! Thank you. This data is stored in the DB, so it will be easy to display.

Is it a bug? Should I create a bug report?

@dave-roofr
Copy link

@trashken Those columns relate to the deprecated check-in endpoints. There's another table that stores the check-in list data. I'm currently away from my laptop so I can't recall the exact name of the table

@trashken
Copy link
Author

trashken commented Dec 7, 2024

@trashken Those columns relate to the deprecated check-in endpoints. There's another table that stores the check-in list data. I'm currently away from my laptop so I can't recall the exact name of the table

Do you mean attendee_check_ins? It doesn't have a timestamp for check-ins only timestamps for creation and last_update.

Screenshot_7-12-2024_145740_192 3 255 28

@daveearley
Copy link
Contributor

daveearley commented Dec 7, 2024

You can infer the check-in time from the created date. There's no need for an explicit "check-in" timestamp.

@trashken
Copy link
Author

trashken commented Dec 9, 2024

SELECT a.first_name, a.last_name, b.updated_at::timestamp at time zone 'UTC' at time zone '<your time zone>' FROM attendees a JOIN attendee_check_ins b ON b.attendee_id = a.id ORDER BY a.first_name ASC

Yes.. I am using the SQL above to get the times in my time-zone. Would be great if it was a report or somewhere for organizers to see who was early, on-time and late. Thanks.

@daveearley
Copy link
Contributor

@trashken It has been requested a few times, so I'll add it into the next major version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants