You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
346 B
12 lines
346 B
2 years ago
|
class MergeRequest < ApplicationRecord
|
||
|
belongs_to :requesting_organisation, class_name: "Organisation"
|
||
|
has_many :merge_request_organisations
|
||
|
has_many :merging_organisations, through: :merge_request_organisations, source: :merging_organisation
|
||
|
|
||
|
STATUS = {
|
||
|
"unsubmitted" => 0,
|
||
|
"submitted" => 1,
|
||
|
}.freeze
|
||
|
enum status: STATUS
|
||
|
end
|