Skip to content

Instantly share code, notes, and snippets.

@lkrych
Created October 17, 2016 16:27
Show Gist options
  • Save lkrych/fd77b202d3eec9ca6b04d0876074e804 to your computer and use it in GitHub Desktop.
Save lkrych/fd77b202d3eec9ca6b04d0876074e804 to your computer and use it in GitHub Desktop.
Delete method pulled from movies_controler
class MoviesController < ApplicationController
#some code
def destroy
@movie = Movie.find(params[:id])
@movie.destroy
flash[:notice] = "Movie '#{@movie.title}' deleted."
redirect_to movies_path
end
#some code
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment