本文整理汇总了Python中ckan.plugins.toolkit.auth_allow_anonymous_access方法的典型用法代码示例。如果您正苦于以下问题:Python toolkit.auth_allow_anonymous_access方法的具体用法?Python toolkit.auth_allow_anonymous_access怎么用?Python toolkit.auth_allow_anonymous_access使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ckan.plugins.toolkit
的用法示例。
在下文中一共展示了toolkit.auth_allow_anonymous_access方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: auth_allow_anonymous_access
# 需要导入模块: from ckan.plugins import toolkit [as 别名]
# 或者: from ckan.plugins.toolkit import auth_allow_anonymous_access [as 别名]
def auth_allow_anonymous_access(auth_function):
'''
Local version of the auth_allow_anonymous_access decorator that only
calls the actual toolkit decorator if the CKAN version supports it
'''
if pt.check_ckan_version(min_version='2.2'):
auth_function = pt.auth_allow_anonymous_access(auth_function)
return auth_function