aboutsummaryrefslogtreecommitdiff
path: root/API/Database
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2020-12-11 21:30:39 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2020-12-11 21:30:39 +0200
commite0642bea9392f5fdab92f70622e671f9fd7ee0c7 (patch)
tree56f47760c4884f7f9fa227603c5697924381b08d /API/Database
parent6ccb8618f2fe79e61702b0ba0ce48182d9293943 (diff)
downloadDevHive-e0642bea9392f5fdab92f70622e671f9fd7ee0c7.tar
DevHive-e0642bea9392f5fdab92f70622e671f9fd7ee0c7.tar.gz
DevHive-e0642bea9392f5fdab92f70622e671f9fd7ee0c7.zip
Renamed custom Roles class to UserRoles, fixing naming ambiguity
Diffstat (limited to 'API/Database')
-rw-r--r--API/Database/DevHiveContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/API/Database/DevHiveContext.cs b/API/Database/DevHiveContext.cs
index f8ddf83..7cb8f16 100644
--- a/API/Database/DevHiveContext.cs
+++ b/API/Database/DevHiveContext.cs
@@ -6,7 +6,7 @@ using Microsoft.AspNetCore.Identity;
namespace API.Database
{
- public class DevHiveContext : IdentityDbContext<User, Roles, int>
+ public class DevHiveContext : IdentityDbContext<User, UserRoles, int>
{
public DevHiveContext(DbContextOptions options)
: base(options) { }