Topic: You are being redirected. [SOLVED]
I am having a small problem with a redirect_to.
instead of sending me to the proper page it send me to a page that just says: You are being redirected. with a link to where i want to go.
my code looks like
def create
if location.save
flash[:notice] = 'Location was successfully created'
redirect_to(users_locations_path)
else
render :new
end
endI am not sure what is happening
Thanks