Update file ide_controller.rb
1 unresolved thread
1 unresolved thread
Compare changes
@@ -12,6 +12,7 @@ class IdeController < ApplicationController
@@ -77,4 +78,8 @@ def tracking_namespace_source
Do not update/delete: Banner broadcast message test data
Do not update/delete: Notification broadcast message test data
THIS IS A TEST MR. PLEASE IGNORE.
Testing an issue I came across with GitLab Duo Code Review
The method
do_smthing
is called in thebefore_action
block, but it's not defined until the end of the file. This could lead to aNoMethodError
. Consider moving the method definition above its usage or removing it from thebefore_action
if it's not necessary.