jbox-web/redmine_git_hosting

View on GitHub
app/models/github_comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class GithubComment < ActiveRecord::Base
  ## Relations
  belongs_to :journal

  ## Validations
  validates :github_id,  presence: true
  validates :journal_id, presence: true, uniqueness: { scope: :github_id }
end