mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
10 lines
260 B
Ruby
10 lines
260 B
Ruby
class AppliedProject < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :project
|
|
|
|
has_many :applied_messages, as: :applied, dependent: :destroy
|
|
has_many :forge_activities, as: :forge_act, dependent: :destroy
|
|
|
|
scope :pending, -> { where(status: 0) }
|
|
end
|