Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created May 13, 2011 14:38
Show Gist options
  • Save jlebrech/970645 to your computer and use it in GitHub Desktop.
Save jlebrech/970645 to your computer and use it in GitHub Desktop.
friends.haml
.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
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