I have the write api plugin installed as well as the question and answer plugin. We are successfully creating topics and posts. Is it possible to create a topic as a question? I tried adding isQuestion (equals 1) to the POST body when creating the topic but it was ignored. Would the write-api have to be forked and updated to support the optional value of isQuestion? It seems clear in the question and answer plugin that it doesn't create/expose any write api of its own.
Disable one plugin? New, for v0.5.0
-
Prior to today, if you installed a broken plugin, this was the solution:
In short:
./nodebb reset plugins
New to v0.5.0, however, will be the ability to reset just one plugin at a time, using this format:
$ ./nodebb reset plugin="nodebb-plugin-brokenplugin"
The existing implementation will continue to work, as will
./nodebb reset all
.Edit: Dat syntax highlighting....
-
I was thinking about this, but in my head a different syntax - how about this?
(for multiple at a time):
./nodebb disable nodebb-plugin-brokenplugin nodebb-plugin-julians-plugin nodebb-theme-baris-theme
(because none of my plugins ever break :D)
EDIT: nvm, looks like you did it already