예제 #1
0
        public ActionResult <GetTextCommentContract> GetComment(long commentId)
        {
            m_authorizationManager.AuthorizeTextComment(commentId, PermissionFlag.ReadProject);

            var result = m_projectContentManager.GetComment(commentId);

            return(Ok(result));
        }