Skip to content

Commit

Permalink
merge results
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed May 26, 2024
2 parents 934db7c + 96d9195 commit dcbc905
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,42 @@
{
"/": "/*",
"comment": "Matches any URL with a path that starts with /"
},
{
"/": "/api*",
"exclude": true
},
{
"/": "/odata*",
"exclude": true
},
{
"/": "/jobs*",
"exclude": true
},
{
"/": "/core*",
"exclude": true
},
{
"/": "/signalr*",
"exclude": true
},
{
"/": "/healthchecks-ui*",
"exclude": true
},
{
"/": "/healthz*",
"exclude": true
},
{
"/": "/swagger*",
"exclude": true
},
{
"/": "/signin-*",
"exclude": true
}
]
},
Expand All @@ -22,6 +58,42 @@
{
"/": "/*",
"comment": "Matches any URL with a path that starts with /"
},
{
"/": "/api*",
"exclude": true
},
{
"/": "/odata*",
"exclude": true
},
{
"/": "/jobs*",
"exclude": true
},
{
"/": "/core*",
"exclude": true
},
{
"/": "/signalr*",
"exclude": true
},
{
"/": "/healthchecks-ui*",
"exclude": true
},
{
"/": "/healthz*",
"exclude": true
},
{
"/": "/swagger*",
"exclude": true
},
{
"/": "/signin-*",
"exclude": true
}
]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
using Android.App;
using Android.OS;
using Android.App;
using Android.Content;
using Android.Content.PM;
using Android.OS;
using Boilerplate.Client.Core;
using Java.Net;

namespace Boilerplate.Client.Maui.Platforms.Android;

[IntentFilter([Intent.ActionView],
DataSchemes = ["https", "http"],
DataHost = "bp.bitplatform.dev",
DataPathPrefix = "/",
DataHosts = ["bp.bitplatform.dev"],
DataPaths = ["/"],
DataPathPrefixes = ["/add-edit-category", "/categories", "/dashboard", "/confirm", "/forgot-password",
"/profile", "/reset-password", "/sign-in", "/sign-up", "/not-authorized", "/not-found",
"/offline-edit-profile", "/products", "/terms", "/todo", "/about", "/about"],
AutoVerify = true,
Categories = [Intent.ActionView, Intent.CategoryDefault, Intent.CategoryBrowsable])]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ self.serverHandledUrls = [
/\/signalr\//,
/\/healthchecks-ui/,
/\/healthz/,
/\/swagger/
/\/swagger/,
/\/signin-/
];

self.defaultUrl = "/";
Expand Down

0 comments on commit dcbc905

Please sign in to comment.