mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
10 lines
216 B
Ruby
10 lines
216 B
Ruby
class IssueParticipant < ApplicationRecord
|
|
|
|
belongs_to :issue
|
|
belongs_to :participant, class_name: "User"
|
|
|
|
enum participant_type: {"authored": 0, "assigned": 1, "commented": 2, "edited": 3, "atme": 4}
|
|
|
|
|
|
end
|