Skip to content

Instantly share code, notes, and snippets.

@lkrych
Created October 17, 2016 16:23
Show Gist options
  • Save lkrych/9b21c80f115b0df691181808a7bf8fcf to your computer and use it in GitHub Desktop.
Save lkrych/9b21c80f115b0df691181808a7bf8fcf to your computer and use it in GitHub Desktop.
Create method pulled from movies_controller
class MoviesController < ApplicationController
#some code
def create
@movie = Movie.create!(movie_params)
flash[:notice] = "#{@movie.title} was successfully created."
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