Iam also making a simple kind of forum, and I have a simple question ragarding that.
When a page gets created with the user input from the form I use:
DataFactory.Instance.Save(newPostPage, SaveAction.Publish, AccessLevel.Read);
Should I instead use AccessLevel.NoAccess?
I want every visitor to be able to make posts. Does it matter - 'Read' or 'NoAccess'? In our EpiServer installation 'everyone' has read access to the page.
When would I want to use NoAccess?