As of now, the wiki feature is used by directly returning the output of Auth.wiki in the controller
I think this would be more consistent with the usual scaffolding model
db.py
wiki = Wiki(args)
wiki.settings.a = ...
wiki.settings.b = ...
...
# default.py
# using wiki would override the global name
# although I'm not sure about the function name
def pages():
# this would replace auth.wiki()
return wiki()
Would not be better to enforce this syntax in the welcome app?