-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from chingu-x/feature/sprints-functionality-pt4
Feature/sprints functionality pt4
- Loading branch information
Showing
53 changed files
with
1,482 additions
and
986 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
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
5 changes: 0 additions & 5 deletions
5
...n)/my-voyage/[teamId]/sprints/[sprintNumber]/meeting/[meetingId]/submit-check-in/page.tsx
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...ain)/my-voyage/[teamId]/sprints/[sprintNumber]/meeting/[meetingId]/submit-voyage/page.tsx
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
src/app/(main)/my-voyage/[teamId]/sprints/[sprintNumber]/submit-check-in/page.tsx
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Suspense } from "react"; | ||
|
||
import WeeklyCheckInWrapper from "@/myVoyage/sprints/components/WeeklyCheckInWrapper"; | ||
import Spinner from "@/components/Spinner"; | ||
|
||
interface WeeklyCheckInPageProps { | ||
params: { | ||
teamId: string; | ||
meetingId: string; | ||
sprintNumber: string; | ||
}; | ||
} | ||
|
||
export default function WeeklyCheckInPage({ params }: WeeklyCheckInPageProps) { | ||
return ( | ||
<Suspense fallback={<Spinner />}> | ||
<WeeklyCheckInWrapper params={params} /> | ||
</Suspense> | ||
); | ||
} |
22 changes: 22 additions & 0 deletions
22
src/app/(main)/my-voyage/[teamId]/sprints/[sprintNumber]/submit-voyage/page.tsx
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { Suspense } from "react"; | ||
|
||
import SubmitProjectWrapper from "@/myVoyage/sprints/components/SubmitProjectWrapper"; | ||
import Spinner from "@/components/Spinner"; | ||
|
||
interface VoyageSubmissionPageProps { | ||
params: { | ||
teamId: string; | ||
meetingId: string; | ||
sprintNumber: string; | ||
}; | ||
} | ||
|
||
export default function VoyageSubmissionPage({ | ||
params, | ||
}: VoyageSubmissionPageProps) { | ||
return ( | ||
<Suspense fallback={<Spinner />}> | ||
<SubmitProjectWrapper params={params} /> | ||
</Suspense> | ||
); | ||
} |
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
Oops, something went wrong.