This commit is contained in:
Ruidy Nemausat 2020-02-28 12:59:58 +01:00
parent 5c039ad31d
commit 50d2b8b86a
2 changed files with 1 additions and 2 deletions

View file

@ -97,7 +97,6 @@ namespace TicketManager
app.UseDefaultFiles();
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Ticket Manager API v1");

View file

@ -12,7 +12,7 @@ import _ from "underscore";
interface IProps {
show: boolean;
handleClose: () => void;
handleClose(): void;
// users: User[];
// allUsers: User[];
}