aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/IRoleService.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-19 19:02:37 +0200
committertranstrike <transtrike@gmail.com>2021-01-19 19:02:37 +0200
commit163827d4a8dbc4b41bfa0f78edc7dd30626e95d3 (patch)
tree511aedb06c346671d6604e861c0b13cf93ae9299 /src/DevHive.Services/Interfaces/IRoleService.cs
parent4836e2f4cc3e1eb53f415d26771c76c84d29c280 (diff)
downloadDevHive-163827d4a8dbc4b41bfa0f78edc7dd30626e95d3.tar
DevHive-163827d4a8dbc4b41bfa0f78edc7dd30626e95d3.tar.gz
DevHive-163827d4a8dbc4b41bfa0f78edc7dd30626e95d3.zip
Fixed role id creeping up the chain
Diffstat (limited to 'src/DevHive.Services/Interfaces/IRoleService.cs')
-rw-r--r--src/DevHive.Services/Interfaces/IRoleService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Services/Interfaces/IRoleService.cs b/src/DevHive.Services/Interfaces/IRoleService.cs
index a7a0e47..fd661be 100644
--- a/src/DevHive.Services/Interfaces/IRoleService.cs
+++ b/src/DevHive.Services/Interfaces/IRoleService.cs
@@ -10,7 +10,7 @@ namespace DevHive.Services.Interfaces
Task<RoleServiceModel> GetRoleById(Guid id);
- Task<bool> UpdateRole(RoleServiceModel roleServiceModel);
+ Task<bool> UpdateRole(UpdateRoleServiceModel roleServiceModel);
Task<bool> DeleteRole(Guid id);
}