aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/DevHive.Data/Models/Role.cs10
-rw-r--r--src/DevHive.Data/Repositories/RoleRepository.cs33
-rw-r--r--src/DevHive.Services/Configurations/Mapping/RoleMapings.cs14
-rw-r--r--src/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs2
4 files changed, 58 insertions, 1 deletions
diff --git a/src/DevHive.Data/Models/Role.cs b/src/DevHive.Data/Models/Role.cs
new file mode 100644
index 0000000..974add1
--- /dev/null
+++ b/src/DevHive.Data/Models/Role.cs
@@ -0,0 +1,10 @@
+using System;
+using Microsoft.AspNetCore.Identity;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace DevHive.Data.Models
+{
+ [Table("Roles")]
+ public class Role : IdentityRole<Guid>
+ { }
+}
diff --git a/src/DevHive.Data/Repositories/RoleRepository.cs b/src/DevHive.Data/Repositories/RoleRepository.cs
new file mode 100644
index 0000000..5ddadab
--- /dev/null
+++ b/src/DevHive.Data/Repositories/RoleRepository.cs
@@ -0,0 +1,33 @@
+using System;
+using System.Threading.Tasks;
+using Data.Models.Interfaces.Database;
+using DevHive.Data.Models;
+
+namespace DevHive.Data.Repositories
+{
+ public class RoleRepository : IRepository<Role>
+ {
+ public async Task AddAsync(Role entity)
+ {
+ throw new NotImplementedException();
+ }
+
+ //Find entity by id
+ public async Task<TEntity> GetByIdAsync(Guid id)
+ {
+ throw new NotImplementedException();
+ }
+
+ //Modify Entity from database
+ public async Task EditAsync(Role newEntity)
+ {
+ throw new NotImplementedException();
+ }
+
+ //Delete Entity from database
+ public async Task DeleteAsync(Role entity)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
diff --git a/src/DevHive.Services/Configurations/Mapping/RoleMapings.cs b/src/DevHive.Services/Configurations/Mapping/RoleMapings.cs
new file mode 100644
index 0000000..0e06523
--- /dev/null
+++ b/src/DevHive.Services/Configurations/Mapping/RoleMapings.cs
@@ -0,0 +1,14 @@
+using DevHive.Data.Models;
+using AutoMapper;
+using DevHive.Services.Models.Identity.Role;
+
+namespace DevHive.Services.Configurations.Mapping
+{
+ public class RoleMappings : Profile
+ {
+ public RoleMappings()
+ {
+ CreateMap<RoleServiceModel, Role>();
+ }
+ }
+}
diff --git a/src/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs b/src/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs
index f877e6c..0bd66a6 100644
--- a/src/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs
+++ b/src/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs
@@ -16,7 +16,7 @@ namespace DevHive.Web.Configurations.Extensions
services.AddDbContext<DevHiveContext>(options =>
options.UseNpgsql(configuration.GetConnectionString("DEV")));
- services.AddIdentity<User, IdentityRole>()
+ services.AddIdentity<User, Role>()
.AddEntityFrameworkStores<DevHiveContext>();
services.Configure<IdentityOptions>(options =>