Using a project template like below (set it in the neighborhood admin overview form), a new project's wiki ends up with "show meta data" set to true. We had a string/bool parsing problem in the past which was fixed, but this field isn't working still. There's a unit test for the previous fix, so it should be easy to add another test case.
{
"tools":{
"admin":{"label":"Admin","mount_point":"admin"},
"wiki":{
"label":"Home",
"mount_point":"home",
"options":{
"show_left_bar":false,
"show_discussion":false,
"show_metadata":false
},
},
},
"tool_order":["home","admin"]
}
The programmatic name for 'Show Metadata' is actually
show_right_bar. If you use that instead ofshow_metadata, it works.Opening a ticket to document the Project Template options.