removes unnecessary comments

This commit is contained in:
rgarcia
2015-09-03 01:29:13 +02:00
parent ae0ad77197
commit 29ae0c68f8
2 changed files with 0 additions and 5 deletions

View File

@@ -1,4 +1,3 @@
# make sure document_type is being stored and queried in the correct format (Is it DNI? a number, a string?)
class VerifiedUser < ActiveRecord::Base
scope :by_user, -> (user) { where(document_number: user.document_number,
document_type: user.document_type) }

View File

@@ -1,8 +1,4 @@
class ApplicationResponder < ActionController::Responder
include Responders::FlashResponder
include Responders::HttpCacheResponder
# Redirects resources to the collection path (index action) instead
# of the resource path (show action) for POST/PUT/DELETE requests.
# include Responders::CollectionResponder
end