Commit b47bb655

mo khan <mo@mokhan.ca>
2013-06-01 14:19:48
no really fix the specs this time.
1 parent c57379a
Changed files (2)
app/controllers/comments_controller.rb
@@ -7,7 +7,6 @@ class CommentsController < ApplicationController
 
   def create
     comment = resolve(CommentOnCreationCommand).run(params)
-    MixPanel.track("Added Comment", {} , @request_env)
     redirect_to comment.commentable, :notice => 'Nice Comment!'
   end
 end
app/controllers/creations_controller.rb
@@ -3,7 +3,6 @@ class CreationsController < ApplicationController
 
   def index
     @creations = FindAllCreationsQuery.new.fetch(params)
-    MixPanel.track "Viewed Home Page", {}, @request_env, current_user unless Rails.env.test?
   end
 
   def show