Publishing threads
To publish or unpublish a thread, you must perform the following:
- Get an instance of the manager.
Get instance of the ForumsManager object.
- Modify the thread.
Change the value of the IsPublished property of the thread. For more information, see Modifying threads.
Here is a code example:
public void PublishThread(Guid threadId)
{
ForumsManager forumsManager = ForumsManager.GetManager();
ForumThread thread = forumsManager.GetThread(threadId);
thread.IsPublished = true;
forumsManager.SaveChanges();
}
public void UnpublishThread(Guid threadId)
{
ForumsManager forumsManager = ForumsManager.GetManager();
ForumThread thread = forumsManager.GetThread(threadId);
thread.IsPublished = false;
forumsManager.SaveChanges();
}