aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/IdentityServer/ProfileService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/IdentityServer/ProfileService.cs')
-rw-r--r--src/server/IdentityServer/ProfileService.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/server/IdentityServer/ProfileService.cs b/src/server/IdentityServer/ProfileService.cs
new file mode 100644
index 0000000..197086c
--- /dev/null
+++ b/src/server/IdentityServer/ProfileService.cs
@@ -0,0 +1,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;
+ }
+ }
+} \ No newline at end of file