public
Description: All the extra stuff you could want for the Mack Framework.
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack-more.git
mack-more / mack-orm / spec / fake_application / app / controllers / people_and_users_controller.rb
100644 9 lines (7 sloc) 0.17 kb
1
2
3
4
5
6
7
8
9
class PeopleAndUsersController
  include Mack::Controller
  
  def create
    @user = User.create(params[:user])
    @person = Person.create(params[:person])
  end
  
end