feat: started working on replys in comments, changes IDs to GETs

Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
limited_dev 2023-03-18 00:49:50 +01:00
parent 5ee623b295
commit 396edeefde
9 changed files with 207 additions and 11 deletions

View file

@ -87,4 +87,9 @@ public class TheManager
Console.WriteLine("An error occurred: " + e.Message);
}
}
public static async Task<bool> isGETComment(string board, int GET)
{
return await CommentsRepository.getCommentByGETAsync(board, GET) != null;
}
}