Skip to content
Extraits de code Groupes Projets
Valider dd1a1c15 rédigé par Maxwell Salzberg's avatar Maxwell Salzberg
Parcourir les fichiers

dont use instance vars when you have accessor methods

parent df023e4c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -23,7 +23,7 @@ class AspectStream < BaseStream
# @return [ActiveRecord::Association<Aspect>] Filtered aspects given the stream's user
def aspects
@aspects ||= lambda do
a = @user.aspects
a = user.aspects
a = a.where(:id => @inputted_aspect_ids) if @inputted_aspect_ids.length > 0
a
end.call
......@@ -39,7 +39,7 @@ class AspectStream < BaseStream
# @return [ActiveRecord::Association<Post>] AR association of posts
def posts
# NOTE(this should be something like Post.all_for_stream(@user, aspect_ids, {}) that calls visible_posts
@posts ||= @user.visible_posts(:by_members_of => aspect_ids,
@posts ||= user.visible_posts(:by_members_of => aspect_ids,
:type => TYPES_OF_POST_IN_STREAM,
:order => "#{order} DESC",
:max_time => max_time
......@@ -81,7 +81,7 @@ class AspectStream < BaseStream
#
# @return [Boolean]
def for_all_aspects?
@all_aspects ||= aspect_ids.length == @user.aspects.size
@all_aspects ||= aspect_ids.length == user.aspects.size
end
def contacts_title
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter