diff options
author | James Lopez <james@jameslopez.es> | 2016-03-21 17:29:19 +0100 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2016-03-21 17:29:19 +0100 |
commit | dff4050f1d3f00815c095ec2645bd935f14e51a7 (patch) | |
tree | 1c75a16e2a49bbb9829e4838c659bebe3a818740 /app/models | |
parent | bd8a77674f7226aafa4bd9befa8ed7482c372dc1 (diff) | |
download | gitlab-ce-dff4050f1d3f00815c095ec2645bd935f14e51a7.tar.gz |
fixed some rubocop warnings
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/project_import_data.rb | 2 |
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 |