diff options
author | Stan Hu <stanhu@gmail.com> | 2018-07-25 15:01:37 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2018-07-25 15:01:37 -0700 |
commit | e47cf67e80f0b18d8938f918ed373f59eeddbb14 (patch) | |
tree | 8a1bed4116e2f6769cc7a35875e14aef6dc5e306 /app/controllers/import | |
parent | 6762aa0d4527b6d710e49cd3c76e98157e2f8346 (diff) | |
download | gitlab-ce-e47cf67e80f0b18d8938f918ed373f59eeddbb14.tar.gz |
Add frozen_string_literal: true to controller
Diffstat (limited to 'app/controllers/import')
-rw-r--r-- | app/controllers/import/bitbucket_server_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/import/bitbucket_server_controller.rb b/app/controllers/import/bitbucket_server_controller.rb index 77b7a0bb50c..05950c5cd84 100644 --- a/app/controllers/import/bitbucket_server_controller.rb +++ b/app/controllers/import/bitbucket_server_controller.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + class Import::BitbucketServerController < Import::BaseController before_action :verify_bitbucket_server_import_enabled before_action :bitbucket_auth, except: [:new, :configure] |