blob: 551b9cca6b1efd9cac00a0d05c80603dc2211a0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module HooksHelper
def link_to_test_hook(hook, trigger)
path = case hook
when ProjectHook
project = hook.project
test_project_hook_path(project, hook, trigger: trigger)
when SystemHook
test_admin_hook_path(hook, trigger: trigger)
end
trigger_human_name = trigger.to_s.tr('_', ' ').camelize
link_to path, rel: 'nofollow' do
content_tag(:span, trigger_human_name)
end
end
end
|