summaryrefslogtreecommitdiff
path: root/app/models/concerns/has_whatnot.rb
blob: a4dcfa02e1045c2768e8b4b59cd6485deab92b12 (plain)
1
2
3
4
5
6
7
8
9
module HasWhatnot
  extend ActiveSupport::Concern

  included do
    def whatnot
      @whatnot ||= super.is_a?(Hash) ? super.deep_symbolize_keys! : nil
    end
  end
end