Ítalo Matos

Results 9 issues of Í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" ![Captura de Tela 2019-11-02 às 18 52 50](https://user-images.githubusercontent.com/836472/68077422-5428cc80-fda2-11e9-8faf-bcad7f76b9d9.png)

bug

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: ![Captura de Tela 2019-10-06 às 18 53 05](https://user-images.githubusercontent.com/836472/66276537-8fe77980-e86a-11e9-8a7c-81689a6fd6ae.png)

### 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...

dependencies
javascript
ruby
Tests! 🎉💖👏
erb

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.