Update and delete games (#48)
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m27s
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m27s
Co-authored-by: Maxime Adler <madler@sqli.com> Reviewed-on: #48
This commit was merged in pull request #48.
This commit is contained in:
@@ -10,6 +10,8 @@ public static class Endpoints
|
||||
public const string Create = "api/Game/Create";
|
||||
public static string Fetch(GameFilterDto filter) => $"api/Game?{UrlHelper.BuildUrlParams(filter)}";
|
||||
public static string FetchById(int gameId) => $"api/Game/{gameId}";
|
||||
public static string Delete(int gameId) => $"api/Game/Delete/{gameId}";
|
||||
public const string Update = "api/Game/Update";
|
||||
}
|
||||
|
||||
public static class Category
|
||||
|
||||
Reference in New Issue
Block a user