summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-03-21 17:29:19 +0100
committerJames Lopez <james@jameslopez.es>2016-03-21 17:29:19 +0100
commitdff4050f1d3f00815c095ec2645bd935f14e51a7 (patch)
tree1c75a16e2a49bbb9829e4838c659bebe3a818740 /app/models
parentbd8a77674f7226aafa4bd9befa8ed7482c372dc1 (diff)
downloadgitlab-ce-dff4050f1d3f00815c095ec2645bd935f14e51a7.tar.gz
fixed some rubocop warnings
Diffstat (limited to 'app/models')
-rw-r--r--app/models/project_import_data.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project_import_data.rb b/app/models/project_import_data.rb
index 420c01f9960..ba4334055d6 100644
--- a/app/models/project_import_data.rb
+++ b/app/models/project_import_data.rb
@@ -12,7 +12,7 @@ require 'file_size_validator'
class ProjectImportData < ActiveRecord::Base
belongs_to :project
- attr_encrypted :credentials, key: Gitlab::Application.secrets.db_key_base, marshal: true, encode: true, :mode => :per_attribute_iv_and_salt
+ attr_encrypted :credentials, key: Gitlab::Application.secrets.db_key_base, marshal: true, encode: true, mode: :per_attribute_iv_and_salt
serialize :data, JSON