Class: Helios::Videos::Admin::VideosController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/helios/videos/admin/videos_controller.rb

Instance Method Summary collapse

Instance Method Details

#updateObject



7
8
9
10
11
12
13
# File 'app/controllers/helios/videos/admin/videos_controller.rb', line 7

def update
  if @video.update(video_params)
    head :ok
  else
    head :unprocessable_entity
  end
end