Skip to content
Snippets Groups Projects
Commit ca614044 authored by Martin Lowe's avatar Martin Lowe :flag_ca:
Browse files

Update build + comments for the resources

parent 17e3ce31
No related branches found
No related tags found
No related merge requests found
SHELL = /bin/bash
install:;
npm ci --no-cache
dev-start:;
mvn compile -e quarkus:dev
clean:;
mvn clean
compile-assets:;
npm test && npm run build
compile-java:;
compile-java:compile-assets;
mvn compile package
compile-java-quick:;
compile-java-quick:compile-assets;
mvn compile package -Dmaven.test.skip=true
compile: clean compile-java;
......
......@@ -42,6 +42,8 @@ import io.quarkus.qute.Template;
* Retrieves adopted projects along with adopters info for display. This data can be viewed for all projects, a single
* project, or all projects defined within a working group by the working group ID.
*
* Additionally contains the HTML UI pages for users to interact with this data.
*
* @author Martin Lowe
*
*/
......@@ -103,6 +105,7 @@ public class AdoptersResource {
}
@GET
@Produces(MediaType.TEXT_HTML)
@Path("project-adopters/{alias}")
public Response getWorkingGroupSubPage(@PathParam("alias") String workingGroupAlias) {
// retrieve the corresponding working group, or return an error
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment