Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/email/message/in_product_marketing/trial_short.rb')
-rw-r--r--lib/gitlab/email/message/in_product_marketing/trial_short.rb47
1 files changed, 0 insertions, 47 deletions
diff --git a/lib/gitlab/email/message/in_product_marketing/trial_short.rb b/lib/gitlab/email/message/in_product_marketing/trial_short.rb
deleted file mode 100644
index 0fcd3fde4a6..00000000000
--- a/lib/gitlab/email/message/in_product_marketing/trial_short.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Email
- module Message
- module InProductMarketing
- class TrialShort < Base
- def subject_line
- s_('InProductMarketing|Be a DevOps hero')
- end
-
- def tagline
- nil
- end
-
- def title
- s_('InProductMarketing|Expand your DevOps journey with a free GitLab trial')
- end
-
- def subtitle
- s_('InProductMarketing|Start your trial today to experience single application success and discover all the features of GitLab Ultimate for free!')
- end
-
- def body_line1
- ''
- end
-
- def body_line2
- ''
- end
-
- def cta_text
- s_('InProductMarketing|Start a trial')
- end
-
- def progress
- super(total: 4, track_name: 'Trial')
- end
-
- def logo_path
- 'mailers/in_product_marketing/trial-0.png'
- end
- end
- end
- end
- end
-end