質問編集履歴
2
修正依頼があったため。
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,6 +76,54 @@
|
|
76
76
|
|
77
77
|
```
|
78
78
|
|
79
|
-
|
79
|
+
destroy.html.haml
|
80
80
|
|
81
|
+
```
|
82
|
+
|
83
|
+
.destroy
|
84
|
+
|
85
|
+
.destroy2
|
86
|
+
|
87
|
+
削除できました
|
88
|
+
|
89
|
+
= link_to "戻る", "/", class: "destroy3"
|
90
|
+
|
91
|
+
```
|
92
|
+
|
93
|
+
index.html.haml
|
94
|
+
|
95
|
+
```
|
96
|
+
|
97
|
+
.chatmain
|
98
|
+
|
99
|
+
- @tweets.each do |tweet|
|
100
|
+
|
101
|
+
.tweets
|
102
|
+
|
103
|
+
.name
|
104
|
+
|
105
|
+
= tweet.user.name
|
106
|
+
|
107
|
+
.messa
|
108
|
+
|
81
|
-
|
109
|
+
= tweet.text
|
110
|
+
|
111
|
+
= link_to "返信", "tweets/#{tweet.id}/comments", class: "comments"
|
112
|
+
|
113
|
+
- if user_signed_in? && current_user.id == tweet.user_id
|
114
|
+
|
115
|
+
= link_to "編集", "/tweets/#{tweet.id}/edit", method: :get, class: "edit"
|
116
|
+
|
117
|
+
= link_to "削除", "/tweets/#{tweet.id}", method: :delete, class: "delete"
|
118
|
+
|
119
|
+
.time
|
120
|
+
|
121
|
+
= tweet.created_at.strftime("%Y/%m/%d %H:%M")
|
122
|
+
|
123
|
+
.tweets2
|
124
|
+
|
125
|
+
= link_to new_tweet_path do
|
126
|
+
|
127
|
+
%i.fas.
|
128
|
+
|
129
|
+
```
|
1
修正依頼があったため。
test
CHANGED
File without changes
|
test
CHANGED
@@ -55,3 +55,27 @@
|
|
55
55
|
かなり初歩的な質問ですが、ご回答頂けると助かります。
|
56
56
|
|
57
57
|
よろしくお願いします。
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
#補足
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
def destroy
|
66
|
+
|
67
|
+
tweet = Tweet.find(params[:id])
|
68
|
+
|
69
|
+
if tweet.user_id == current_user.id
|
70
|
+
|
71
|
+
tweet.destroy
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
削除は実装しました。
|
80
|
+
|
81
|
+
よろしくお願いします。
|