소스 검색

Use notifiable type as a scope for partial names

Chris Oliver 7 년 전
부모
커밋
18ed1676bf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/views/notifications/index.html.erb

+ 1 - 1
app/views/notifications/index.html.erb

@@ -2,6 +2,6 @@
 
 <ul>
   <% @notifications.each do |notification| %>
-    <li><%= render "#{notification.action}_to_current_user", actor: notification.actor, notifiable: notification.notifiable  %></li>
+    <li><%= render "notifications/#{notification.notifiable_type.underscore}/#{notification.action.underscore}", actor: notification.actor, notifiable: notification.notifiable  %></li>
   <% end %>
 </ul>