Posts by Olivictor • 146 points
2 posts
-
2
votes2
answers220
viewsA: Nomethoderror: Undefined method `similaridade_com' for #<Class:0x007ff55873cad0> - Ror
If there are no restrictions, it would be better to create a table with the has_many through relation: class Usuario < ActiveRecord::Base has_many :similaridades has_many :usuarios, through:…
-
1
votes1
answer381
viewsA: Calendar in Rails 4
You can create an action in the controller that uses a date parameter (current day, for example) and filter the query for the given week, for example: def eventos_da_semana semana =…