Commit b47bb655
Changed files (2)
app
controllers
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