当前位置: 首页>>代码示例>>Python>>正文


Python Permission.content_type_id方法代码示例

本文整理汇总了Python中django.contrib.auth.models.Permission.content_type_id方法的典型用法代码示例。如果您正苦于以下问题:Python Permission.content_type_id方法的具体用法?Python Permission.content_type_id怎么用?Python Permission.content_type_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.contrib.auth.models.Permission的用法示例。


在下文中一共展示了Permission.content_type_id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: setUp

# 需要导入模块: from django.contrib.auth.models import Permission [as 别名]
# 或者: from django.contrib.auth.models.Permission import content_type_id [as 别名]
    def setUp(self):
        self.factory = RequestFactory()
        self.test_user = UserModel.objects.create_user("test_user", "[email protected]", "123456")
        self.test_noscope_user = UserModel.objects.create_user("test_no_scope_user", "[email protected]", "123456")
        from django.contrib.auth.models import Permission
        p = Permission()
        p.name = "test_user_scope"
        p.content_type_id = 7
        p.save()

        self.test_user.user_permissions.add(p)

        self.application = Application(
            name="Test Application",
            user=self.test_user,
            client_type=Application.CLIENT_CONFIDENTIAL,
            client_id="test_client_id",
            authorization_grant_type=Application.GRANT_PASSWORD,
            client_secret="test_client_secret",
            scopes="test_app_scope1 test_app_scope2"
        )
        self.application.save()

        oauth2_settings._SCOPES = ['read', 'write']
开发者ID:plivo,项目名称:django-oauth-toolkit,代码行数:26,代码来源:test_scopes.py


注:本文中的django.contrib.auth.models.Permission.content_type_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。