forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: Esther Alvarez Feijoo <[email protected]> Co-Authored-By: aHenryJard <[email protected]> Co-Authored-By: michael cirioli <[email protected]>
- Loading branch information
1 parent
5c9ba14
commit 55b2bc7
Showing
19 changed files
with
117 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,12 @@ | |
|
||
import hudson.Extension; | ||
import hudson.model.ManagementLink; | ||
import hudson.security.Permission; | ||
import jenkins.model.Jenkins; | ||
import org.jenkinsci.Symbol; | ||
|
||
import javax.annotation.CheckForNull; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Nicolas De Loof</a> | ||
*/ | ||
|
@@ -48,6 +52,12 @@ public String getDescription() { | |
return Messages.CliLink_Description(); | ||
} | ||
|
||
@CheckForNull | ||
@Override | ||
public Permission getRequiredPermission() { | ||
return Jenkins.MANAGE; | ||
} | ||
|
||
@Override | ||
public String getUrlName() { | ||
return "cli"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,12 @@ | |
|
||
import hudson.Extension; | ||
import hudson.model.ManagementLink; | ||
import hudson.security.Permission; | ||
import jenkins.model.Jenkins; | ||
import org.jenkinsci.Symbol; | ||
|
||
import javax.annotation.CheckForNull; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Nicolas De Loof</a> | ||
*/ | ||
|
@@ -48,6 +52,12 @@ public String getDescription() { | |
return Messages.ConfigureLink_Description(); | ||
} | ||
|
||
@CheckForNull | ||
@Override | ||
public Permission getRequiredPermission() { | ||
return Jenkins.MANAGE; | ||
} | ||
|
||
@Override | ||
public String getUrlName() { | ||
return "configure"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,9 +26,13 @@ | |
|
||
import hudson.Extension; | ||
import hudson.model.ManagementLink; | ||
import hudson.security.Permission; | ||
import jenkins.management.Messages; | ||
import jenkins.model.Jenkins; | ||
import org.jenkinsci.Symbol; | ||
|
||
import javax.annotation.CheckForNull; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Nicolas De Loof</a> | ||
*/ | ||
|
@@ -49,6 +53,12 @@ public String getDescription() { | |
return Messages.NodesLink_Description(); | ||
} | ||
|
||
@CheckForNull | ||
@Override | ||
public Permission getRequiredPermission() { | ||
return Jenkins.MANAGE; | ||
} | ||
|
||
@Override | ||
public String getUrlName() { | ||
return "computer"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,12 @@ | |
|
||
import hudson.Extension; | ||
import hudson.model.ManagementLink; | ||
import hudson.security.Permission; | ||
import jenkins.model.Jenkins; | ||
import org.jenkinsci.Symbol; | ||
|
||
import javax.annotation.CheckForNull; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Nicolas De Loof</a> | ||
*/ | ||
|
@@ -48,6 +52,12 @@ public String getDescription() { | |
return Messages.StatisticsLink_Description(); | ||
} | ||
|
||
@CheckForNull | ||
@Override | ||
public Permission getRequiredPermission() { | ||
return Jenkins.MANAGE; | ||
} | ||
|
||
@Override | ||
public String getUrlName() { | ||
return "load-statistics"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters