Skip to content

Commit

Permalink
Merge pull request #410 from 51ngul4r1ty/story/000404/choose-current-…
Browse files Browse the repository at this point in the history
…story

bump ver
  • Loading branch information
51ngul4r1ty authored May 3, 2022
2 parents e98efef + 7585407 commit 3c06491
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atoll",
"version": "0.55.0",
"version": "0.56.0",
"author": {
"name": "Kevin Berry",
"email": "[email protected]"
Expand Down
21 changes: 17 additions & 4 deletions src/server/api/handlers/root.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,24 @@ export const rootHandler = function (req, res) {
}
]
},
{
id: "projects",
name: "Projects",
description: "Collection of projects",
displayIndex: 5,
links: [
{
type: APPLICATION_JSON,
rel: ROOT_REL_COLLECTION,
uri: "/api/v1/projects"
}
]
},
{
id: "sprints",
name: "Sprints",
description: "Collection of sprints",
displayIndex: 4,
displayIndex: 6,
links: [
{
type: APPLICATION_JSON,
Expand All @@ -126,7 +139,7 @@ export const rootHandler = function (req, res) {
id: "backlog-items",
name: "Backlog Items",
description: "Collection of backlog items",
displayIndex: 5,
displayIndex: 7,
links: [
{
type: APPLICATION_JSON,
Expand All @@ -139,7 +152,7 @@ export const rootHandler = function (req, res) {
id: "sprint-backlog-items-parts",
name: "Sprint Backlog Item Parts",
description: "Collection of parts under a backlog item contained in a specific sprint",
displayIndex: 6,
displayIndex: 8,
links: [
{
type: APPLICATION_JSON,
Expand All @@ -152,7 +165,7 @@ export const rootHandler = function (req, res) {
id: "product-backlog-items",
name: "Product Backlog Items",
description: "Linked lists used to display backlog items in prioritized order",
displayIndex: 7,
displayIndex: 9,
links: [
{
type: APPLICATION_JSON,
Expand Down

0 comments on commit 3c06491

Please sign in to comment.