blob: 197086c58d11fd2e06507e774136232f1eb8d671 (
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
25
26
27
28
29
30
|
using System.Reflection;
using System.Threading.Tasks;
using Dough.Models.Database;
using Dough.Utilities;
using IdentityServer4;
using IdentityServer4.Models;
using IdentityServer4.Services;
namespace Dough.IdentityServer
{
public class ProfileService : IProfileService
{
private readonly MainDbContext _context;
public ProfileService(MainDbContext context)
{
_context = context;
}
public Task GetProfileDataAsync(ProfileDataRequestContext context)
{
throw new System.NotImplementedException();
}
public Task IsActiveAsync(IsActiveContext context)
{
return default;
}
}
}
|