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

_form.html.haml « integrations « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62f8d9862964a7d8b5e0cf2a5ba7d80654328620 (plain)
1
2
3
4
5
6
7
- integration = local_assigns.fetch(:integration)

%h3.page-title
  = integration.title

= form_for integration, as: :service, url: scoped_integration_path(integration), method: :put, html: { class: 'gl-show-field-errors integration-settings-form js-integration-settings-form', data: { 'test-url' => scoped_test_integration_path(integration) } } do |form|
  = render 'shared/service_settings', form: form, integration: integration