Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <% if @news.last.created_at > preview.updated_at && preview.user_id == current_user.id %>
  2. <p><%= link_to "edit", edit_game_preview_path(@game.id, preview.id) %></p>
  3. <% end %>
  4.  
  5. Rails.application.routes.draw do
  6.  
  7. devise_for :users
  8.  
  9. root "games#index"
  10.  
  11. resources :games do
  12. resources :news
  13. resources :reviews, except: [:show, :index]
  14. resources :previews, except: [:show, :index]
  15. end
  16.  
  17. resources :platforms
  18. resources :genres
  19.  
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement