blob: 04e8a2bdbd475ec867b186bef0e60585915667fc (
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
24
|
using System.Collections.Generic;
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",
};
}
}
|