Guest User

Untitled

a guest
Jun 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def documento_a_cargar=(documento)
  2. if documento.class == ActionController::UploadedTempfile
  3. self.content_type = documento.content_type.chomp
  4. self.data = documento.read
  5. self.filename = documento.original_filename
  6. end
  7. end
Add Comment
Please, Sign In to add comment