Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use default type cast for
recorded_at
Previously, `recorded_at` was consistently returned in UTC format, with the reason for this decision not explicitly documented in the commit history. This commit modifies the behavior to use the application's configured timezone for `recorded_at`, aligning with the default type cast for timestamp fields. This adjustment ensures that timestamp data is presented in a more intuitive format for users, potentially enhancing user experience and data interpretation. ### Before: ``` Activity.last.history.first.recorded_at => 2024-01-05 14:40:18.656918 UTC ``` ### After: ``` Activity.last.history.first.recorded_at => Fri, 05 Jan 2024 15:40:18.656918000 CET +01:00 ```
- Loading branch information