Created
May 13, 2011 14:38
-
-
Save jlebrech/970645 to your computer and use it in GitHub Desktop.
friends.haml
This file contains 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
.friends-in | |
%h1 Friends In | |
- @friends_in.each do |friendship| | |
%p | |
=friendship.friend.login | |
=link_to "remove", friendship, :method => :delete | |
=link_to "accept", friendship, :method => :put |
This file contains 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
resources :friendships do | |
collection do | |
post :create | |
put :accept | |
get :remove | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment