Commit c1d5e36
Changed files (1)
app
controllers
app/controllers/needs_controller.rb
@@ -15,7 +15,6 @@ class NeedsController < ApplicationController
def create
@need = current_user.needs.create(params[:need])
- location = GeoLocationService.GetGeoLocation(params[:location]) if params[:location]
current_user.tag(@need, :with => params[:need_tags], :on => :tags)
if @need.save
redirect_to needs_path, notice: 'Need was successfully created.'