blob: 3afaaad548b5eb2b23ee9546ad2bec00e4769e06 (
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/signin-oidc",
"http://localhost:3000/signin-oidc",
};
public static readonly string[] BrowserAppLogoutRedirectUrls =
{
"http://localhost:8080/signout-callback-oidc",
"http://localhost:3000/signout-callback-oidc",
};
}
}
|