aboutsummaryrefslogtreecommitdiff
path: root/API/Controllers/UserController.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-11 18:41:14 +0200
committertranstrike <transtrike@gmail.com>2020-12-11 18:41:14 +0200
commit29b2a82d7ef2613b3e56eba7ed959243a98ae92d (patch)
tree7da289cfd800d17024d5c0370582594ef4dcb0ea /API/Controllers/UserController.cs
parent6ca4c43b3192a70347ba98bd88c5aab71327ecc9 (diff)
downloadDevHive-29b2a82d7ef2613b3e56eba7ed959243a98ae92d.tar
DevHive-29b2a82d7ef2613b3e56eba7ed959243a98ae92d.tar.gz
DevHive-29b2a82d7ef2613b3e56eba7ed959243a98ae92d.zip
Changed returns to IActionResult; Id from UserDTO removed
Diffstat (limited to 'API/Controllers/UserController.cs')
-rw-r--r--API/Controllers/UserController.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/API/Controllers/UserController.cs b/API/Controllers/UserController.cs
index 7e75e3e..fdb1c44 100644
--- a/API/Controllers/UserController.cs
+++ b/API/Controllers/UserController.cs
@@ -1,11 +1,8 @@
-using System.Net;
-using System.Net.Http;
using System.Threading.Tasks;
using API.Database;
using API.Service;
using AutoMapper;
using Microsoft.AspNetCore.Mvc;
-using Data.Models.Classes;
using Data.Models.DTOs;
namespace API.Controllers