Class: DownloadSolutions::Api::Reddit::RemoveIds
- Inherits:
-
Object
- Object
- DownloadSolutions::Api::Reddit::RemoveIds
- Defined in:
- lib/download_solutions/api/reddit/remove_ids.rb
Class Method Summary collapse
-
.call(params:) ⇒ void
Removes IDs from comments.
Class Method Details
.call(params:) ⇒ void
This method returns an undefined value.
Removes IDs from comments.
9 10 11 12 13 |
# File 'lib/download_solutions/api/reddit/remove_ids.rb', line 9 def self.call(params:) params.comments.each do |comment| remove_ids!(comment) end end |