Where do we really need base-auth plugin? If a 'user' has multiple 'houses', most of the RESTful actions can use user.houses itself instead of base-auth.
INDEX: user.houses EDIT/UPDATE/DESTROY/SHOW: user.houses.find(params[:id]) NEW: user.houses.build UPDATE: user.houses.create(params[:house])
In such case, I dont see any real value of using base-auth plugin.