aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/IdentityServer/ProfileService.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2020-08-10 21:35:58 +0200
committerivarlovlie <git@ivarlovlie.no>2020-08-10 21:35:58 +0200
commit2cfee78597971b2e3e7e612eb9d7e8805e1aef85 (patch)
treeb939d48347c7fff48d2a51761cb546c3b9ac6ec0 /src/server/IdentityServer/ProfileService.cs
parent8614d18522441543e08c37c68121fed1fa8d6ae7 (diff)
downloaddough-2cfee78597971b2e3e7e612eb9d7e8805e1aef85.tar.xz
dough-2cfee78597971b2e3e7e612eb9d7e8805e1aef85.zip
add signing credentials
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