dhhxu/projectscope

View on GitHub
app/models/project.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Project < ActiveRecord::Base
  has_one :pull_request
  has_one :slack_metric
  has_one :code_climate_metric
  has_one :pivotal_tracker
  has_many :slack_data_points, through: :slack_metric
  has_one :slack_trend
  
  def code_climate_color
      if self.code_climate_metric
          self.code_climate_metric.score_color
      else
          ""
      end
  end
end