|
@@ -38,7 +38,7 @@ namespace GxPress.Api.AppControllers
|
|
|
public async Task<IEnumerable<Entity.AppReport>> GetAppReportList()
|
|
|
{
|
|
|
var user = await userRepository.GetAsync(_loginContext.AccountId);
|
|
|
- if (!user.IsReply)
|
|
|
+ if (!user.IsReport)
|
|
|
return new List<Entity.AppReport>();
|
|
|
var result = await _appReportRepository.GetAppReportListAsync();
|
|
|
var appReportList = result as AppReport[] ?? result.ToArray();
|