-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathglobal.jelly
More file actions
executable file
·31 lines (31 loc) · 1.2 KB
/
global.jelly
File metadata and controls
executable file
·31 lines (31 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:section title="Office 365 Connector">
<f:entry title="URL" field="globalUrl">
<f:textbox/>
</f:entry>
<f:entry title="Name" field="globalName">
<f:textbox/>
</f:entry>
<f:advanced>
<f:section title="Proxy Config">
<f:description>
This section defines the Office365Connector proxy settings that will apply to all webhook notifications. This
proxy configuration will be prioritized over the Jenkins global proxy config
</f:description>
<f:entry title="IP" field="ip">
<f:textbox/>
</f:entry>
<f:entry title="Port" field="port">
<f:textbox/>
</f:entry>
<f:entry title="Username" field="username">
<f:textbox/>
</f:entry>
<f:entry title="Password" field="password">
<f:password/>
</f:entry>
</f:section>
</f:advanced>
</f:section>
</j:jelly>