Method: Noticed::TextCoder.load
- Defined in:
- lib/noticed/text_coder.rb
.load(data) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/noticed/text_coder.rb', line 3 def self.load(data) return if data.nil? # Text columns need JSON parsing data = JSON.parse(data) ActiveJob::Arguments.send(:deserialize_argument, data) end |