summaryrefslogtreecommitdiff
path: root/app/models/onboarding/learn_gitlab.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/onboarding/learn_gitlab.rb')
-rw-r--r--app/models/onboarding/learn_gitlab.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/app/models/onboarding/learn_gitlab.rb b/app/models/onboarding/learn_gitlab.rb
deleted file mode 100644
index d7a189ed6e2..00000000000
--- a/app/models/onboarding/learn_gitlab.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-# frozen_string_literal: true
-
-module Onboarding
- class LearnGitlab
- PROJECT_NAME = 'Learn GitLab'
- PROJECT_NAME_ULTIMATE_TRIAL = 'Learn GitLab - Ultimate trial'
- BOARD_NAME = 'GitLab onboarding'
- LABEL_NAME = 'Novice'
-
- def initialize(current_user)
- @current_user = current_user
- end
-
- def available?
- project && board && label
- end
-
- def project
- @project ||= current_user.projects.find_by_name([PROJECT_NAME, PROJECT_NAME_ULTIMATE_TRIAL])
- end
-
- def board
- return unless project
-
- @board ||= project.boards.find_by_name(BOARD_NAME)
- end
-
- def label
- return unless project
-
- @label ||= project.labels.find_by_name(LABEL_NAME)
- end
-
- private
-
- attr_reader :current_user
- end
-end