diff options
| author | gfyoung <gfyoung17@gmail.com> | 2018-09-13 22:42:05 -0700 |
|---|---|---|
| committer | gfyoung <gfyoung17@gmail.com> | 2018-09-18 21:22:45 -0700 |
| commit | 73322a0e551bbbc42d429b15e7ad9fd375ab761d (patch) | |
| tree | cfb28cb2ef99f11dbb055a81db283b8269e2e1ab /app/controllers/registrations_controller.rb | |
| parent | 2dac058de25dc6ed03d0ed6f8b099aa17cdc1cab (diff) | |
| download | gitlab-ce-73322a0e551bbbc42d429b15e7ad9fd375ab761d.tar.gz | |
Enable frozen string in app/controllers/**/*.rbrepo-forks/gitlab-ce-frozen-string-app-controller
Enables frozen string for the following:
* app/controllers/*.rb
* app/controllers/admin/**/*.rb
* app/controllers/boards/**/*.rb
* app/controllers/ci/**/*.rb
* app/controllers/concerns/**/*.rb
Partially addresses #47424.
Diffstat (limited to 'app/controllers/registrations_controller.rb')
| -rw-r--r-- | app/controllers/registrations_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb index e6d6965036e..8b8d87524a8 100644 --- a/app/controllers/registrations_controller.rb +++ b/app/controllers/registrations_controller.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + class RegistrationsController < Devise::RegistrationsController include Recaptcha::Verify include AcceptsPendingInvitations |
