adopt-a-hydrant/app/controllers/info_window_controller.rb

19 lines
414 B
Ruby
Raw Normal View History

2011-05-31 11:12:02 +00:00
class InfoWindowController < ApplicationController
def index
@thing = Thing.find_by_id(params[:thing_id])
if @thing.adopted?
if user_signed_in? && current_user == @thing.user
2014-04-01 08:15:29 +00:00
render('users/thank_you')
2011-05-31 11:12:02 +00:00
else
2014-04-01 08:15:29 +00:00
render('users/profile')
2011-05-31 11:12:02 +00:00
end
else
if user_signed_in?
2014-04-01 08:15:29 +00:00
render('things/adopt')
2011-05-31 11:12:02 +00:00
else
2014-04-01 08:15:29 +00:00
render('users/sign_in')
2011-05-31 11:12:02 +00:00
end
end
end
end