lihao 4 years ago
parent
commit
4765550f0c

+ 1 - 0
gx_api/GxPress/Api/GxPress.Api/AppControllers/AppMeetingController.cs

@@ -684,6 +684,7 @@ namespace GxPress.Api.AppControllers
         /// </summary>
         /// <returns></returns>
         [HttpGet("{id}")]
+        [AllowAnonymous]
         public async Task<MeetingResult> GetMeeting([FromRoute] int id)
         {
             var meeting = await _meetingRepository.GetAsync(id);

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/ArticleGroupRepository.cs

@@ -82,7 +82,7 @@ namespace GxPress.Repository.Implement
         }
         public async Task<IEnumerable<ArticleGroupUserListResult>> GetListAsync(int userId)
         {
-            string sql = $@"select * from tede_article_group where Id not  in(SELECT ArticleGroupId FROM tede_article_group_user where UserId={userId}) and IsSystemDefault=0";
+            string sql = $@"select * from tede_article_group where Id not  in(SELECT ArticleGroupId FROM tede_article_group_user where UserId={userId}) and IsSystemDefault=0 order by Sort desc";
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();