ForestAdmin/forest-rails

View on GitHub
app/services/forest_liana/objective_stat_getter.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module ForestLiana
  class ObjectiveStatGetter < ValueStatGetter
    attr_accessor :objective

    def perform
      super
      @record.value = { value: @record.value[:countCurrent] }
    end
  end
end