Deprecate InternalId concern and rename.

This commit is contained in:
Andreas Brandl 2018-03-06 20:06:27 +01:00
parent 79aa003210
commit a0abb90478
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
module InternalId
module NonatomicInternalId
extend ActiveSupport::Concern
included do

View File

@ -1,5 +1,5 @@
class Deployment < ActiveRecord::Base
include InternalId
include NonatomicInternalId
belongs_to :project, required: true
belongs_to :environment, required: true

View File

@ -1,7 +1,7 @@
require 'carrierwave/orm/activerecord'
class Issue < ActiveRecord::Base
include InternalId
include NonatomicInternalId
include Issuable
include Noteable
include Referable

View File

@ -1,5 +1,5 @@
class MergeRequest < ActiveRecord::Base
include InternalId
include NonatomicInternalId
include Issuable
include Noteable
include Referable

View File

@ -8,7 +8,7 @@ class Milestone < ActiveRecord::Base
Started = MilestoneStruct.new('Started', '#started', -3)
include CacheMarkdownField
include InternalId
include NonatomicInternalId
include Sortable
include Referable
include StripAttribute

View File

@ -17,7 +17,7 @@ describe MergeRequest do
describe 'modules' do
subject { described_class }
it { is_expected.to include_module(InternalId) }
it { is_expected.to include_module(NonatomicInternalId) }
it { is_expected.to include_module(Issuable) }
it { is_expected.to include_module(Referable) }
it { is_expected.to include_module(Sortable) }