mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-18 00:56:41 +10:00
# Conflicts: # app/controllers/groups/application_controller.rb # app/services/test_hook_service.rb # app/views/admin/groups/show.html.haml # app/views/groups/_settings_nav.html.haml # app/views/groups/show.html.haml # app/views/layouts/_head.html.haml # app/views/projects/_settings_nav.html.haml # db/schema.rb # features/project/project.feature # features/steps/project/project.rb
15 lines
443 B
Plaintext
15 lines
443 B
Plaintext
- page_title "Git Hooks"
|
|
%h3.page-title
|
|
Pre-defined git hooks.
|
|
%p.light
|
|
Rules that define what git pushes are accepted for this project. All newly created projects will use this settings.
|
|
|
|
%hr.clearfix
|
|
|
|
= form_for [:admin, @git_hook], html: { class: 'form-horizontal' } do |f|
|
|
-if @git_hook.errors.any?
|
|
.alert.alert-danger
|
|
- @git_hook.errors.full_messages.each do |msg|
|
|
%p= msg
|
|
= render "shared/git_hooks_form", f: f
|