Ítalo Matos
Ítalo Matos
Resolves #3078 ### Description This PR has a goal to fix javascript calendar timezone. This component uses local timezone ( default ) , but we save our dates in database...
I tried to edit my profile and I received error 500. I filled photo and name, after that I click on "save" 
This is a bug. I filled all registration fields: name, email, password and password confirmation. And, I saw in database that name isnt storage. I'm fixing it.
I try to login in with my facebook account, but I received this error: 
### What github issue is this PR for, if any? Resolves #3962 ### What changed, and why? update boostrap version from 4.6.2 to 5.2.1 version. ### How will this affect...
Fix the name of the Sinatra script in the example
Replace SQL string syntax with Rails range syntax for date filtering in the ActivitySpike::Detector. This improves code readability and follows Rails idioms. Changed from: ```ruby .where("created_at >= ?", recent_period.seconds.ago) ```...
Simplifies the last_event method in ActivitySpike::Detector by using the more idiomatic Rails pattern .order(:created_at).last instead of .order(created_at: :desc).first. Both generate the same SQL query but .last is more readable and...
Replace string-based table references with modern hash syntax in Card::Closeable scopes (recently_closed_first, closed_at_window, closed_by). This improves readability and follows Rails conventions.