SES-129 Endpoint zaklęć #53

Merged
s426134 merged 4 commits from SES-129 into dev 2021-01-09 14:09:33 +01:00
Showing only changes of commit 146abad9f5 - Show all commits

View File

@ -1,5 +1,7 @@
using Microsoft.AspNetCore.Mvc;
using SessionCompanion.Extensions.EitherType;
using SessionCompanion.Services.Interfaces;
using SessionCompanion.ViewModels.ApiResponses;
using SessionCompanion.ViewModels.SpellViewModels;
using System;
using System.Collections.Generic;
@ -20,9 +22,21 @@ namespace SessionCompanion.Controllers
/// </summary>
/// <returns>Lista wszystkich zaklęć w bazie danych</returns>
s426135 marked this conversation as resolved
Review

brakuje możliwości ErrorResponse. Pomimo tego, ze sama metoda teoretycznie nie ma sie gdzie wywalić (ściaga wszystko i przekazuje) to coś może gdzieś na serwerze pójść nie tak. zostanie zwrócony błąd i front się wywróci w konsoli.

brakuje możliwości ErrorResponse. Pomimo tego, ze sama metoda teoretycznie nie ma sie gdzie wywalić (ściaga wszystko i przekazuje) to coś może gdzieś na serwerze pójść nie tak. zostanie zwrócony błąd i front się wywróci w konsoli.
[HttpGet("getAllSpells")]
public async Task<List<SpellViewModel>> GetSpells()
public async Task<Either<List<SpellViewModel>, ErrorResponse>> GetSpells()
{
return _service.Get().ToList();
try
{
var spells = _service.Get().ToList();
return spells;
}
catch (Exception e)
{
return new ErrorResponse()
{
StatusCode = 204,
Message = e.Message
};
}
}
}
}