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

_terminal.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 654aed54a154e83fd0ce2de00b62b694e22b66f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
= form_for @application_setting, url: general_admin_application_settings_path(anchor: 'js-terminal-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = f.label :terminal_max_session_time, 'Max session time', class: 'label-bold'
      = f.number_field :terminal_max_session_time, class: 'form-control'
      .form-text.text-muted
        Maximum time for web terminal websocket connection (in seconds).
        0 for unlimited.

  = f.submit 'Save changes', class: "btn btn-success"