java.lang.Object | |
↳ | chan.content.ChanConfiguration.Board |
Board configuration holder.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
allowArchive | Set |
||||||||||
allowCatalog | Set |
||||||||||
allowCatalogSearch | Set |
||||||||||
allowDeleting | Set |
||||||||||
allowPosting | Set |
||||||||||
allowReporting | Set |
||||||||||
allowSearch | Set |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Set true
to allow client to read an archive of threads.
Set true
to allow user to read catalog.
Set true
to allow client to use catalog as search source. In this case allowCatalog
also must be true
. It can be useful if your chan's catalog is very detailed and can show last
replies to all threads.
Set true
to allow user to delete posts. You must implement
onSendDeletePosts(chan.content.ChanPerformer.SendDeletePostsData)
and configure
deleting with obtainDeletingConfiguration(String)
then.
Set true
to allow user to send posts. You must implement
onSendPost(chan.content.ChanPerformer.SendPostData)
and configure
posting with obtainPostingConfiguration(String, boolean)
then.
Set true
to allow user to send reports. You must implement
onSendReportPosts(chan.content.ChanPerformer.SendReportPostsData)
and configure
reporting with obtainReportingConfiguration(String)
then.
Set true
to allow user to search for threads and posts. You must implement
onReadSearchPosts(chan.content.ChanPerformer.ReadSearchPostsData)
then.