remove bad naming plus bump to 1.0

This commit is contained in:
Anthony Stirling 2025-06-11 02:07:03 +01:00
parent bbdbfa67a0
commit 6dd17a5561
4 changed files with 3 additions and 4 deletions

View File

@ -74,7 +74,7 @@ sourceSets {
allprojects {
group = 'stirling.software'
version = '0.47.0'
version = '1.0.0'
configurations.configureEach {
exclude group: 'commons-logging', module: 'commons-logging'

View File

@ -59,7 +59,7 @@ public class TeamWebController {
model.addAttribute("teamsWithCounts", teamsWithCounts);
model.addAttribute("teamLastRequest", teamLastRequest);
return "enterprise/teams";
return "accounts/teams";
}
@GetMapping("/{id}")
@ -100,6 +100,6 @@ public class TeamWebController {
model.addAttribute("teamUsers", teamUsers);
model.addAttribute("availableUsers", availableUsers);
model.addAttribute("userLastRequest", userLastRequest);
return "enterprise/team-details";
return "accounts/team-details";
}
}

View File

@ -1,4 +1,3 @@
<!-- templates/enterprise/teams.html -->
<!DOCTYPE html>
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}" xmlns:th="https://www.thymeleaf.org">
<head>