質問編集履歴
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,7 +78,7 @@
|
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
-
def favorited_by?(user) ←この引数(user)
|
81
|
+
def favorited_by?(user) ←この引数(user)何なのか&どういった意味で使われている??
|
82
82
|
|
83
83
|
favorites.where(user_id: user.id).exists?
|
84
84
|
|
@@ -110,7 +110,7 @@
|
|
110
110
|
|
111
111
|
<% if user_signed_in? %>
|
112
112
|
|
113
|
-
<% if tweet.favorited_by?(current_user) %>←この部分のcurretn_userはどういう意味で使わている?? <!-- ログインしているユーザーがファボしたかどうかで分岐 -->
|
113
|
+
<% if tweet.favorited_by?(current_user) %>←この部分のcurretn_userは何なのか&どういう意味で使わている?? <!-- ログインしているユーザーがファボしたかどうかで分岐 -->
|
114
114
|
|
115
115
|
<p><span>お気に入り解除: </span><%=link_to tweet.favorites.count, tweet_favorites_path(tweet.id), method: :delete %></p>
|
116
116
|
|