Remove plugins from project integrations page

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2018-03-06 18:08:14 +02:00
parent 9d250a8e49
commit 674f8739c9
No known key found for this signature in database
GPG Key ID: 627C5F589F467F17
3 changed files with 14 additions and 6 deletions

View File

@ -3,4 +3,3 @@
- page_title 'Integrations'
= render 'projects/hooks/index'
= render 'projects/services/index'
= render 'shared/plugins/index'

View File

@ -6,14 +6,18 @@
Plugins
%p
#{link_to 'Plugins', help_page_path('administration/plugins')} are similar to
system hooks but can be are executed as files instead of URL.
system hooks but are executed as files instead of sending data to a URL.
.col-lg-8.append-bottom-default
- if plugins.any?
%ul.content-list
- plugins.each do |file|
%li
= File.basename(file)
.panel.panel-default
.panel-heading
Plugins (#{plugins.count})
%ul.content-list
- plugins.each do |file|
%li
.monospace
= File.basename(file)
- else
%p.light-well.text-center
No plugins found.

View File

@ -0,0 +1,5 @@
---
title: Add plugins list to the system hooks page
merge_request: 17518
author:
type: added