Crosschat.Server.Domain.Entities.User.ResetPhoto C# (CSharp) Method

ResetPhoto() public method

Reset user's photo to default (in case if it's some kind of pornography ;)
public ResetPhoto ( User resetAuthor ) : int
resetAuthor User
return int
        public int ResetPhoto(User resetAuthor)
        {
            if (resetAuthor.Role != UserRole.Moderator && resetAuthor.Role != UserRole.Admin)
                throw new ModeratorsRightsRequiredException();

            return PhotoId = -1;
        }