summaryrefslogtreecommitdiffstats
path: root/app/models/project.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/project.rb')
-rw-r--r--app/models/project.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index 42499ae58..c438be16d 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -121,6 +121,7 @@ class Project < ApplicationRecord
def initialize(attributes=nil, *args)
super
+ # rubocop:disable Style/NegatedIf
initialized = (attributes || {}).stringify_keys
if !initialized.key?('identifier') && Setting.sequential_project_identifiers?
self.identifier = Project.next_identifier
@@ -139,6 +140,7 @@ class Project < ApplicationRecord
self.trackers = Tracker.sorted.to_a
end
end
+ # rubocop:enable Style/NegatedIf
end
def identifier=(identifier)