Method: ActiveStix::UrlsController#update

Defined in:
app/controllers/active_stix/urls_controller.rb

#updateObject

PATCH/PUT /urls/1



37
38
39
40
41
42
43
# File 'app/controllers/active_stix/urls_controller.rb', line 37

def update
  if @url.update(url_params)
    redirect_to @url, notice: 'Url was successfully updated.'
  else
    render :edit
  end
end