Commit 6e07da73

mo khan <mo@mokhan.ca>
2013-05-10 21:03:38
remove comments
1 parent 29be6b1
Changed files (1)
app
app/controllers/photos_controller.rb
@@ -1,8 +1,6 @@
 class PhotosController < ApplicationController
-
   before_filter :authenticate_user!
   before_filter :find_creation
-  #before_filter :find_or_build_photo
 
   def index
     @photos = @creation.photos
@@ -46,8 +44,4 @@ class PhotosController < ApplicationController
     @creation = current_user.creations.find(params[:creation_id])
     raise ActiveRecord::RecordNotFound unless @creation
   end
-
-  #def find_or_build_photo
-    #@photo = params[:id] ? @creation.photos.find(params[:id]) : @creation.photos.build(params[:photo])
-  #end
 end