Skip to content

Commit

Permalink
Merge pull request #94 from Geta/bugfix/route-conflicts
Browse files Browse the repository at this point in the history
Added handler routing to administration views.
  • Loading branch information
svenrog authored Jun 26, 2023
2 parents ca1f373 + 82ee3da commit bd6a27e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page
@page "{handler?}"
@model Geta.NotFoundHandler.Admin.Pages.Geta.NotFoundHandler.Admin.AdministerModel

@await Component.InvokeAsync("Card", new { message = Model.Message, cardType = Model.CardType })
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page
@page "{handler?}"
@model Geta.NotFoundHandler.Admin.Pages.Geta.NotFoundHandler.Admin.DeletedModel

@await Component.InvokeAsync("Card", new { message = Model.Message })
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page
@page "{handler?}"
@model Geta.NotFoundHandler.Admin.Pages.Geta.NotFoundHandler.Admin.IgnoredModel

@await Component.InvokeAsync("Card", new { message = Model.Message })
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page
@page "{handler?}"
@using Geta.NotFoundHandler.Core.Redirects
@model Geta.NotFoundHandler.Admin.Pages.Geta.NotFoundHandler.Admin.IndexModel

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page
@page "{handler?}"
@using Microsoft.AspNetCore.Mvc.TagHelpers
@model Geta.NotFoundHandler.Admin.Areas.Geta.NotFoundHandler.Admin.RegexModel

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page
@page "{handler?}"
@model Geta.NotFoundHandler.Admin.Pages.Geta.NotFoundHandler.Admin.SuggestionsModel

@await Component.InvokeAsync("Card", new { message = Model.Message })
Expand Down

0 comments on commit bd6a27e

Please sign in to comment.