mirror of https://github.com/jenkinsci/jenkins.git
[JENKINS-75136] Show 'Unprotected URLs' description
This commit is contained in:
parent
e7f5953809
commit
d94a864864
|
@ -7,9 +7,7 @@ import jenkins.model.Jenkins
|
||||||
def f = namespace(lib.FormTagLib)
|
def f = namespace(lib.FormTagLib)
|
||||||
|
|
||||||
f.entry(title: _('Unprotected URLs')) {
|
f.entry(title: _('Unprotected URLs')) {
|
||||||
p(class: "jenkins-form-description") {
|
f.description(_('blurb'))
|
||||||
_('blurb')
|
|
||||||
}
|
|
||||||
ul {
|
ul {
|
||||||
for (def action : Jenkins.get().getActions().sort { x, y -> x.getUrlName() <=> y.getUrlName() }) {
|
for (def action : Jenkins.get().getActions().sort { x, y -> x.getUrlName() <=> y.getUrlName() }) {
|
||||||
if (action instanceof UnprotectedRootAction) {
|
if (action instanceof UnprotectedRootAction) {
|
||||||
|
|
Loading…
Reference in New Issue