Add StaticModel role, and add it to Commit model
Instead of doing this: link_to(commit.id, project_commit_path(project, id: commit.id)) Note.create(noteable_id: commit.id, noteable_type: "Commit", ...) It lets us do this: link_to(commit.id, project_commit_path(project, commit)) Note.create(noteable: commit, ...)
This commit is contained in:
parent
877aa54586
commit
8db2a59d0b
|
@ -1,6 +1,7 @@
|
||||||
class Commit
|
class Commit
|
||||||
include ActiveModel::Conversion
|
include ActiveModel::Conversion
|
||||||
include Gitlab::Encode
|
include Gitlab::Encode
|
||||||
|
include StaticModel
|
||||||
extend ActiveModel::Naming
|
extend ActiveModel::Naming
|
||||||
|
|
||||||
attr_accessor :commit
|
attr_accessor :commit
|
||||||
|
@ -22,7 +23,6 @@ class Commit
|
||||||
:to_patch,
|
:to_patch,
|
||||||
to: :commit
|
to: :commit
|
||||||
|
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def find_or_first(repo, commit_id = nil, root_ref)
|
def find_or_first(repo, commit_id = nil, root_ref)
|
||||||
commit = if commit_id
|
commit = if commit_id
|
||||||
|
@ -105,10 +105,6 @@ class Commit
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def persisted?
|
|
||||||
false
|
|
||||||
end
|
|
||||||
|
|
||||||
def initialize(raw_commit, head = nil)
|
def initialize(raw_commit, head = nil)
|
||||||
@commit = raw_commit
|
@commit = raw_commit
|
||||||
@head = head
|
@head = head
|
||||||
|
|
35
app/roles/static_model.rb
Normal file
35
app/roles/static_model.rb
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# Provides an ActiveRecord-like interface to a model whose data is not persisted to a database.
|
||||||
|
module StaticModel
|
||||||
|
extend ActiveSupport::Concern
|
||||||
|
|
||||||
|
module ClassMethods
|
||||||
|
# Used by ActiveRecord's polymorphic association to set object_id
|
||||||
|
def primary_key
|
||||||
|
'id'
|
||||||
|
end
|
||||||
|
|
||||||
|
# Used by ActiveRecord's polymorphic association to set object_type
|
||||||
|
def base_class
|
||||||
|
self
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Used by AR for fetching attributes
|
||||||
|
#
|
||||||
|
# Pass it along if we respond to it.
|
||||||
|
def [](key)
|
||||||
|
send(key) if respond_to?(key)
|
||||||
|
end
|
||||||
|
|
||||||
|
def to_param
|
||||||
|
id
|
||||||
|
end
|
||||||
|
|
||||||
|
def persisted?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroyed?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue