Skip to content

Instantly share code, notes, and snippets.

@dipak-tntra
Created December 28, 2020 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dipak-tntra/0fdcfedcd0cd84bfcad01dd5b52108bd to your computer and use it in GitHub Desktop.
Save dipak-tntra/0fdcfedcd0cd84bfcad01dd5b52108bd to your computer and use it in GitHub Desktop.
class UploadCsv < ApplicationRecord
mount_uploader :csv_file, AvatarUploader
after_create :processed_csv
def processed_csv
GenrateCsvJob.perform_later(self)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment