feat: ajout de la fonctionnalité d'édition des mangas, incluant la création d'un modal d'édition, la mise à jour de l'API pour gérer les modifications, et l'intégration de la logique de gestion des erreurs. Tests ajoutés pour valider le bon fonctionnement de l'édition.
This commit is contained in:
parent
896c57ac34
commit
9255509042
@@ -24,18 +24,24 @@ final class GetChapterContextTest extends AbstractApiTestCase
|
||||
'manga' => $manga,
|
||||
'title' => 'Chapter 1',
|
||||
'number' => 1,
|
||||
'visible' => true,
|
||||
'cbzPath' => '/path/to/chapter1.cbz',
|
||||
]);
|
||||
|
||||
$chapter2 = ChapterFactory::createOne([
|
||||
'manga' => $manga,
|
||||
'title' => 'Chapter 2',
|
||||
'number' => 2,
|
||||
'visible' => true,
|
||||
'cbzPath' => '/path/to/chapter2.cbz',
|
||||
]);
|
||||
|
||||
$chapter3 = ChapterFactory::createOne([
|
||||
'manga' => $manga,
|
||||
'title' => 'Chapter 3',
|
||||
'number' => 3,
|
||||
'visible' => true,
|
||||
'cbzPath' => '/path/to/chapter3.cbz',
|
||||
]);
|
||||
|
||||
// Act
|
||||
|
||||
Reference in New Issue
Block a user