You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Get public Models.[Module] Get(int id) method in the [Module]Controller has an incorrect IF statement which in turn returns nothing and logs an error
if ([Module] != null && [Module].ModuleId != AuthEntityId(EntityNames.Module))
the statement should be
if ([Module] != null && [Module].ModuleId == AuthEntityId(EntityNames.Module))
The text was updated successfully, but these errors were encountered:
The Get
public Models.[Module] Get(int id)
method in the [Module]Controller has an incorrect IF statement which in turn returns nothing and logs an errorif ([Module] != null && [Module].ModuleId != AuthEntityId(EntityNames.Module))
the statement should be
if ([Module] != null && [Module].ModuleId == AuthEntityId(EntityNames.Module))
The text was updated successfully, but these errors were encountered: