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

19 lines
419 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.id == @thing.user_id
2011-05-31 11:12:02 +00:00
render("users/thank_you")
else
render("users/profile")
end
else
if user_signed_in?
render("things/adopt")
2011-05-31 11:12:02 +00:00
else
render("sessions/new")
end
end
end
end