Commit d104be0f

mo khan <mo@mokhan.ca>
2014-08-14 04:04:39
remove caching because its causing some weird issues when you log in and out.
1 parent 43b0357
Changed files (1)
app/controllers/creations_controller.rb
@@ -1,11 +1,9 @@
 class CreationsController < ApplicationController
   def index
     @creations = FindAllCreationsQuery.new.fetch(params)
-    expires_in(10.minutes) unless user_signed_in?
   end
 
   def show
     @creation = FindCreationQuery.new.fetch(params[:id])
-    expires_in(1.minute) unless user_signed_in?
   end
 end