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: c53f63e124b14080883ef7a017922d4e2a1ce119 (plain)
1
2
3
4
5
6
7
8
9
10
= form_for @application_setting, url: general_admin_application_settings_path(anchor: 'js-terminal-settings'), html: { class: 'fieldset-form', id: 'terminal-settings' } 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 gl-form-input'
      .form-text.text-muted
        = _('Maximum time, in seconds, for a web terminal websocket connection. 0 for unlimited.')
  = f.submit _('Save changes'), class: "gl-button btn btn-confirm"