Re-add notifications registered page

This commit is contained in:
Eli Ribble 2026-04-28 05:30:08 +00:00
parent 82b313f62f
commit 68adab88bc
No known key found for this signature in database
5 changed files with 205 additions and 7 deletions

View file

@ -16,6 +16,7 @@ import HomeBase from "@/rmo/view/Home.vue";
import HomeDistrict from "@/rmo/view/district/Home.vue";
import NuisanceBase from "@/rmo/view/Nuisance.vue";
import NuisanceDistrict from "@/rmo/view/district/Nuisance.vue";
import RegisterNotificationsComplete from "@/rmo/view/RegisterNotificationsComplete.vue";
import ReportSubmitted from "@/rmo/view/ReportSubmitted.vue";
import StatusBase from "@/rmo/view/Status.vue";
import StatusByID from "@/rmo/view/StatusByID.vue";
@ -125,12 +126,6 @@ const routes: RouteRecordRaw[] = [
component: ComplianceMailer,
props: true,
},
{
path: "/submitted/:id",
name: "ReportSubmitted",
component: ReportSubmitted,
props: true,
},
{
path: "/status",
name: "StatusBase",
@ -142,6 +137,18 @@ const routes: RouteRecordRaw[] = [
path: "/status/:id",
props: true,
},
{
path: "/submitted/:id",
name: "ReportSubmitted",
component: ReportSubmitted,
props: true,
},
{
path: "/submitted/:id/complete",
name: ROUTE_NAMES.REGISTER_NOTIFICATIONS_COMPLETE,
component: RegisterNotificationsComplete,
props: true,
},
{
path: "/water",
name: "Water",