Fixed agir all issues link.
This commit is contained in:
parent
394b8fd17d
commit
c7d1381d9b
1 changed files with 9 additions and 1 deletions
|
@ -20,6 +20,7 @@ package org.april.agirstatool.core.pages;
|
|||
|
||||
import java.time.LocalDate;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.april.agirstatool.core.AgirStatoolException;
|
||||
import org.april.agirstatool.core.Project;
|
||||
import org.slf4j.Logger;
|
||||
|
@ -60,7 +61,14 @@ public class ProjectPage
|
|||
|
||||
data.setContent("projectName", "Project " + project.getName());
|
||||
data.setAttribute("projectName", "href", project.getPath());
|
||||
if (StringUtils.equals(project.getIdentifier(), "all"))
|
||||
{
|
||||
data.setAttribute("agirLink", "href", "https://agir.april.org/issues");
|
||||
}
|
||||
else
|
||||
{
|
||||
data.setAttribute("agirLink", "href", "https://agir.april.org/projects/" + project.getIdentifier() + "/issues");
|
||||
}
|
||||
data.setContent("versionsup", BuildInformation.instance().version());
|
||||
|
||||
data.setContent("createClosePreviousYearButton", LocalDate.now().getYear() - 1);
|
||||
|
|
Loading…
Reference in a new issue