Fix the issues with the responses in the endpoints
This commit is contained in:
		| @@ -12,7 +12,6 @@ namespace Core.Thalos.Application.UseCases.Modules.Input | ||||
|         public string Route { get; set; } = null!; | ||||
|         public int? Order { get; set; } | ||||
|         public ApplicationsEnum? Application { get; set; } = null!; | ||||
|         public StatusEnum Status { get; set; } | ||||
|         public bool Validate() | ||||
|         { | ||||
|             return Id != null; | ||||
|   | ||||
| @@ -194,8 +194,7 @@ namespace Core.Thalos.Application.UseCases.Modules | ||||
|                     Application = command.Application, | ||||
|                     Route = command.Route, | ||||
|                     Order = command.Order, | ||||
|                     Icon = command.Icon, | ||||
|                     Status = command.Status | ||||
|                     Icon = command.Icon | ||||
|                 }; | ||||
|  | ||||
|                 string id = command.Id; | ||||
|   | ||||
| @@ -179,8 +179,7 @@ namespace Core.Thalos.Application.UseCases.Permissions | ||||
|                     Id = command.Id, | ||||
|                     Name = command.Name, | ||||
|                     Description = command.Description, | ||||
|                     AccessLevel = command.AccessLevel, | ||||
|                     Status = command.Status | ||||
|                     AccessLevel = command.AccessLevel | ||||
|                 }; | ||||
|  | ||||
|                 string id = command.Id; | ||||
|   | ||||
| @@ -166,8 +166,7 @@ namespace Core.Thalos.Application.UseCases.Role | ||||
|                     Description = command.Description, | ||||
|                     Applications = command.Applications, | ||||
|                     Modules = command.Modules, | ||||
|                     Permissions = command.Permissions, | ||||
|                     Status = command.Status | ||||
|                     Permissions = command.Permissions | ||||
|                 }; | ||||
|  | ||||
|                 string id = command.Id; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Oscar Morales
					Oscar Morales