Browse Source

Change minio host to match helm chart, various minor fixes

master
Daniel Gyulai 4 years ago
parent
commit
8d8dd6a3ad
  1. 2
      CoviDok/BLL/MinioHandler.cs
  2. 5
      CoviDok/BLL/Session/Session.cs
  3. 2
      CoviDok/Controllers/AuthController.cs
  4. 2
      CoviDok/Controllers/ImagesController.cs
  5. 1
      CoviDok/api/Request/AuthRegistration.cs

2
CoviDok/BLL/MinioHandler.cs

@ -10,7 +10,7 @@ namespace CoviDok.BLL
{ {
class MinioHandler class MinioHandler
{ {
private MinioClient Client = null; private readonly MinioClient Client = null;
public MinioHandler(string Host, string AccessKey, string SecretKey) public MinioHandler(string Host, string AccessKey, string SecretKey)
{ {

5
CoviDok/BLL/Session/Session.cs

@ -1,4 +1,5 @@
using System; using CoviDok.Api;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
@ -7,7 +8,7 @@ namespace CoviDok.BLL
public class Session public class Session
{ {
public string ID { get; set; } public string ID { get; set; }
public string Type { get; set; } public Role Type { get; set; }
public DateTime LastAccess { get; set; } public DateTime LastAccess { get; set; }
} }
} }

2
CoviDok/Controllers/AuthController.cs

@ -48,7 +48,7 @@ namespace CoviDok.Controllers
// System.Diagnostics.Debug.WriteLine(authRegistration.ToString()); // System.Diagnostics.Debug.WriteLine(authRegistration.ToString());
// Validate Email // Validate Email
GenericResponse genericResponse = new GenericResponse(); GenericResponse genericResponse = new GenericResponse();
if (authRegistration.Email == "a") if (authRegistration.Email == "a@domain.tld")
{ {
genericResponse.Status = Status.Error; genericResponse.Status = Status.Error;
genericResponse.Body["reason"] = authRegistration.Email + " is already registered!"; genericResponse.Body["reason"] = authRegistration.Email + " is already registered!";

2
CoviDok/Controllers/ImagesController.cs

@ -15,7 +15,7 @@ namespace CoviDok.Controllers
public class ImagesController : ControllerBase public class ImagesController : ControllerBase
{ {
private MinioHandler MinioHandler = new MinioHandler( private MinioHandler MinioHandler = new MinioHandler(
"192.168.0.160:9000", "minio:9000",
"secretaccesskey", "secretaccesskey",
"secretsecretkey"); "secretsecretkey");
private readonly string BucketName = "test1"; private readonly string BucketName = "test1";

1
CoviDok/api/Request/AuthRegistration.cs

@ -11,6 +11,7 @@ namespace CoviDok.Api.Request
public string LastName { get; set; } public string LastName { get; set; }
public string Email { get; set; } public string Email { get; set; }
public string Password { get; set; } public string Password { get; set; }
public string Phone { get; set; }
public Role Role { get; set; } public Role Role { get; set; }
public override string ToString() { public override string ToString() {

Loading…
Cancel
Save