Skip to content

Instantly share code, notes, and snippets.

@dmgarland
Created May 8, 2014 11:00
Show Gist options
  • Save dmgarland/a41f0fbf75f1edce0120 to your computer and use it in GitHub Desktop.
Save dmgarland/a41f0fbf75f1edce0120 to your computer and use it in GitHub Desktop.
Starting point for a authors controlller...
PadrinoBlog::App.controllers :authors do
get :new do
@author = Author.new
erb :'authors/new'
end
post :create do
@author = Author.new(params[:author])
if @author.save
redirect '/'
else
flash[:notice] = "Sorry... there was a problem.."
erb :'authors/new'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment