Skip to content

Commit

Permalink
Don't regenerate keywords on save
Browse files Browse the repository at this point in the history
  • Loading branch information
CoralineAda committed Jun 17, 2024
1 parent 5f73a88 commit e415b71
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/models/survey_response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,12 @@ def identifier
self.id.to_s.rjust(4, "0")
end

def enqueue_keyword_extraction
KeywordExtractorJob.perform_async(self.id)
end

def enqueue_export_to_graph
ExportToGraphJob.perform_async(self.id)
KeywordExtractorJob.perform_async(self.id)
end

def to_graph
Expand Down

0 comments on commit e415b71

Please sign in to comment.