summaryrefslogtreecommitdiff
path: root/app/views/projects/services/slack_slash_commands/_help.html.haml
blob: 04b9100acc69cafc1413a32006d0d86c4a9fbd70 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
- pretty_name = defined?(@project) ? @project.name_with_namespace : "namespace / path"
- run_actions_text = "Perform common operations on this project: #{pretty_name}"

.well
  This service allows GitLab users to perform common operations on this
  project by entering slash commands in Slack.
  %br
  See list of available commands in Slack after setting up this service,
  by entering
  %code /<command> help
  %br
  %br
  - unless @service.template?
    To setup this service:
    %ul.list-unstyled
      %li
        1.
        = link_to 'Add a slash command', 'https://my.slack.com/services/new/slash-commands'
        in your Slack team with these options:

    %hr

    .help-form
      .form-group
        = label_tag nil, 'Command', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.text-block
          %p Fill in the word that works best for your team.
          %p
            Suggestions:
            %code= 'gitlab'
            %code= @project.path # Path contains no spaces, but dashes
            %code= @project.path_with_namespace

      .form-group
        = label_tag :url, 'URL', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.input-group
          = text_field_tag :url, service_trigger_url(subject), class: 'form-control input-sm', readonly: 'readonly'
          .input-group-btn
            = clipboard_button(clipboard_target: '#url')

      .form-group
        = label_tag nil, 'Method', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.text-block POST

      .form-group
        = label_tag :customize_name, 'Customize name', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.input-group
          = text_field_tag :customize_name, 'GitLab', class: 'form-control input-sm', readonly: 'readonly'
          .input-group-btn
            = clipboard_button(clipboard_target: '#customize_name')

      .form-group
        = label_tag nil, 'Customize icon', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.text-block
          = image_tag(asset_url('slash-command-logo.png'), width: 36, height: 36)
          = link_to('Download image', asset_url('gitlab_logo.png'), class: 'btn btn-sm', target: '_blank')

      .form-group
        = label_tag nil, 'Autocomplete', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.text-block Show this command in the autocomplete list

      .form-group
        = label_tag :autocomplete_description, 'Autocomplete description', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.input-group
          = text_field_tag :autocomplete_description, run_actions_text, class: 'form-control input-sm', readonly: 'readonly'
          .input-group-btn
            = clipboard_button(clipboard_target: '#autocomplete_description')

      .form-group
        = label_tag :autocomplete_usage_hint, 'Autocomplete usage hint', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.input-group
          = text_field_tag :autocomplete_usage_hint, '[help]', class: 'form-control input-sm', readonly: 'readonly'
          .input-group-btn
            = clipboard_button(clipboard_target: '#autocomplete_usage_hint')

      .form-group
        = label_tag :descriptive_label, 'Descriptive label', class: 'col-sm-2 col-xs-12 control-label'
        .col-sm-10.col-xs-12.input-group
          = text_field_tag :descriptive_label, 'Perform common operations on GitLab project', class: 'form-control input-sm', readonly: 'readonly'
          .input-group-btn
            = clipboard_button(clipboard_target: '#descriptive_label')

    %hr

    %ul.list-unstyled
      %li
        2. Paste the
        %strong Token
        into the field below
      %li
        3. Select the
        %strong Active
        checkbox, press
        %strong Save changes
        and start using GitLab inside Slack!