opf/openproject

View on GitHub
modules/webhooks/app/models/webhooks/project.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Webhooks
  class Project < ApplicationRecord
    belongs_to :webhook
    belongs_to :project, class_name: "::Project"

    validates_presence_of :project
  end
end