Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. get '/join/:friendship' do
  2. friendship = uncover(params[:friendship])
  3.  
  4. if current_user
  5. commitment(friendship)
  6. outsourcing(friendship)
  7. users_redirect
  8. else
  9. redirect("/signin/#{friendship}")
  10. end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement