summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-11-04 16:31:05 +0100
committerJames Lopez <james@jameslopez.es>2016-11-17 08:22:57 +0100
commitf59b8afc8212ba1da34913b15e25769dc4cc37db (patch)
tree8f54c84acafd52ac02b94c27a5189eef3240db32
parent83130ae877ffa946ef270743905f8fe1ac123305 (diff)
downloadgitlab-ce-f59b8afc8212ba1da34913b15e25769dc4cc37db.tar.gz
fix module issue in cycle analytics controller
-rw-r--r--app/controllers/projects/cycle_analytics_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/cycle_analytics_controller.rb b/app/controllers/projects/cycle_analytics_controller.rb
index 16a7b1fc6e2..04f4cc7000e 100644
--- a/app/controllers/projects/cycle_analytics_controller.rb
+++ b/app/controllers/projects/cycle_analytics_controller.rb
@@ -5,7 +5,7 @@ class Projects::CycleAnalyticsController < Projects::ApplicationController
before_action :authorize_read_cycle_analytics!
def show
- @cycle_analytics = CycleAnalytics.new(@project, from: parse_start_date)
+ @cycle_analytics = ::CycleAnalytics.new(@project, from: parse_start_date)
respond_to do |format|
format.html