extended LoginProvider with additional data
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SimpleHttpServer.Login;
|
||||
|
||||
namespace SimpleHttpServerTest.SimpleTestServer;
|
||||
internal class LdAuthorizer {
|
||||
private readonly LoginProvider lprov;
|
||||
|
||||
internal LdAuthorizer(LoginProvider lprov) {
|
||||
this.lprov = lprov;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SimpleHttpServerTest.SimpleTestServer;
|
||||
internal class SimpleEndpointDefinition {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user