mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
ADD conflicts file for pull api
This commit is contained in:
11
app/models/gitea/pull.rb
Normal file
11
app/models/gitea/pull.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class Gitea::Pull < Gitea::Base
|
||||
self.inheritance_column = nil # FIX The single-table inheritance mechanism failed
|
||||
# establish_connection :gitea_db
|
||||
|
||||
self.table_name = "pull_request"
|
||||
|
||||
serialize :conflicted_files, Array
|
||||
|
||||
belongs_to :pull_request, class_name: '::PullRequest', foreign_key: :id, primary_key: :gpid, optional: true
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user