Created
February 24, 2015 00:13
-
-
Save kareemgrant/ad52d654f6a8cc845860 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>users#index</h1> | |
<p>Find me in app/views/users/index.html.erb</p> | |
<% @users.each do |user| %> | |
<p> | |
<%= user.first_name %> | |
<%= user.last_name %> | |
<%= link_to "Delete This User", user_path(user), method: :delete, data: {confirm: "Are you sure you want to delete this user?"} %> | |
</p> | |
<% end %> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rails.application.routes.draw do | |
resources :users do | |
resources :tweets | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment