summaryrefslogtreecommitdiff
path: root/lib/gitlab/email/message/in_product_marketing/admin_verify.rb
blob: 234b93594b5f20f230dfb5c78a544d47dede88e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true

module Gitlab
  module Email
    module Message
      module InProductMarketing
        class AdminVerify < Base
          def subject_line
            s_('InProductMarketing|Create a custom CI runner with just a few clicks')
          end

          def tagline
            nil
          end

          def title
            s_('InProductMarketing|Spin up an autoscaling runner in GitLab')
          end

          def subtitle
            s_('InProductMarketing|Use our AWS cloudformation template to spin up your runners in just a few clicks!')
          end

          def body_line1
            ''
          end

          def body_line2
            ''
          end

          def cta_text
            s_('InProductMarketing|Create a custom runner')
          end

          def progress
            super(track_name: 'Admin')
          end
        end
      end
    end
  end
end