Skip to content

Commit 68d2abc

Browse files
committed
Wrap lines
1 parent 15c7290 commit 68d2abc

File tree

11 files changed

+22
-11
lines changed

11 files changed

+22
-11
lines changed

Diff for: app/views/repository_deployment_credentials/edit.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_deployment_credential, @credential,
2-
url: repository_deployment_credential_path(@repository, @credential), authenticity_token: form_authenticity_token,
2+
url: repository_deployment_credential_path(@repository, @credential),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :put, class: 'tabular', remote: true } do |f|
45

56
.flash-messages = error_messages_for 'credential'

Diff for: app/views/repository_deployment_credentials/new.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_deployment_credential, @credential,
2-
url: repository_deployment_credentials_path(@repository), authenticity_token: form_authenticity_token,
2+
url: repository_deployment_credentials_path(@repository),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :post, class: 'tabular', remote: true } do |f|
45

56
.flash-messages= error_messages_for 'credential'

Diff for: app/views/repository_git_config_keys/edit.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_git_config_key, @git_config_key,
2-
url: repository_git_config_key_path(@repository, @git_config_key), authenticity_token: form_authenticity_token,
2+
url: repository_git_config_key_path(@repository, @git_config_key),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :put, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }

Diff for: app/views/repository_git_config_keys/new.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_git_config_key, @git_config_key,
2-
url: repository_git_config_keys_path(@repository), authenticity_token: form_authenticity_token,
2+
url: repository_git_config_keys_path(@repository),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :post, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }

Diff for: app/views/repository_git_extras/move.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ h2 = l(:label_move_repository, repo_name: @repository.gitolite_repository_name)
22

33
.box
44
= labelled_form_for :repository_mover, @move_repository_form,
5-
url: move_repository_git_extras_path(@repository), authenticity_token: form_authenticity_token,
5+
url: move_repository_git_extras_path(@repository),
6+
authenticity_token: form_authenticity_token,
67
html: { method: :post, class: 'tabular', data: { confirm: l(:text_are_you_sure) } } do |f|
78

89
.flash-messages = error_messages_for 'move_repository_form'

Diff for: app/views/repository_mirrors/edit.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_mirror, @mirror,
2-
url: repository_mirror_path(@repository, @mirror), authenticity_token: form_authenticity_token,
2+
url: repository_mirror_path(@repository, @mirror),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :put, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }

Diff for: app/views/repository_mirrors/new.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_mirror, @mirror,
2-
url: repository_mirrors_path(@repository), authenticity_token: form_authenticity_token,
2+
url: repository_mirrors_path(@repository),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :post, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_post_receive_url, @post_receive_url,
2-
url: repository_post_receive_url_path(@repository, @post_receive_url), authenticity_token: form_authenticity_token,
2+
url: repository_post_receive_url_path(@repository, @post_receive_url),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :put, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }

Diff for: app/views/repository_post_receive_urls/new.html.slim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_post_receive_url, @post_receive_url,
2-
url: repository_post_receive_urls_path(@repository), authenticity_token: form_authenticity_token,
2+
url: repository_post_receive_urls_path(@repository),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :post, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_protected_branche, @protected_branch,
2-
url: repository_protected_branch_path(@repository, @protected_branch), authenticity_token: form_authenticity_token,
2+
url: repository_protected_branch_path(@repository, @protected_branch),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :put, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
= labelled_form_for :repository_protected_branche, @protected_branch,
2-
url: repository_protected_branches_path(@repository), authenticity_token: form_authenticity_token,
2+
url: repository_protected_branches_path(@repository),
3+
authenticity_token: form_authenticity_token,
34
html: { method: :post, class: 'tabular', remote: true } do |f|
45

56
= render partial: 'form', locals: { f: f }

0 commit comments

Comments
 (0)