blob: 564bfb2e8f37fa113b53d157a7c3f72c5fa402a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
namespace Dough.Models
{
public static class Constants
{
public static readonly string[] BrowserAppUrls =
{
"http://localhost:8080",
"http://localhost:3000",
};
public static readonly string[] BrowserAppLoginRedirectUrls =
{
"http://localhost:8080/oidc-callback",
"http://localhost:3000/oidc-callback",
};
public static readonly string[] BrowserAppLogoutRedirectUrls =
{
"http://localhost:8080",
"http://localhost:3000",
};
}
}
|