コード例 #1
0
ファイル: resources.py プロジェクト: GenPingYuan/Taobao-Top
 class Meta:
     queryset = Quiz.objects()
     allowed_methods = ('get', )
     authentication = UserAuthentication()
     authorization = Authorization()
     excludes = ('resource_uri', )
     ordering = ('created_at', )
コード例 #2
0
ファイル: resources.py プロジェクト: GenPingYuan/Taobao-Top
 class Meta:
     queryset = FavoriteCategory.objects()
     allowed_methods = ('get', 'post')
     detail_allowed_methods = ('get', )
     authentication = UserAuthentication()
     excludes = ('resource_uri', )
     filtering = {'user': ALL}
コード例 #3
0
ファイル: resources.py プロジェクト: GenPingYuan/Taobao-Top
 class Meta:
     queryset = Mark.objects(is_online=True)
     allowed_methods = ('get', 'post')
     authentication = UserAuthentication()
     authorization = Authorization()
     excludes = ('resource_uri', )
     filtering = {'user': ALL, 'period': ALL}
     ordering = ('created_at', 'period')
コード例 #4
0
ファイル: resources.py プロジェクト: GenPingYuan/Taobao-Top
 class Meta:
     queryset = Paper.objects(is_online=True)
     allowed_methods = ('get', )
     authentication = UserAuthentication()
     authorization = Authorization()
     excludes = ('resource_uri', )
     filtering = {'period': ALL}
     ordering = ('period', )
コード例 #5
0
ファイル: resources.py プロジェクト: GenPingYuan/Taobao-Top
 class Meta:
     queryset = User.objects()
     allowed_methods = ('get', )
     detail_allowed_methods = ('get', 'post')
     authentication = UserAuthentication()
     authorization = Authorization()
     always_return_data = True
     fields = [
         'id', 'username', 'email', 'screen_name', 'phone', 'device',
         'accounts', 'is_active', 'last_login', 'date_joined'
     ]
     ordering = ('username', 'last_login', 'date_joined')
コード例 #6
0
ファイル: resources.py プロジェクト: GenPingYuan/Taobao-Top
 class Meta:
     queryset = Lottery.objects(is_online=True)
     allowed_methods = ('get', )
     authentication = UserAuthentication()
     authorization = Authorization()
     filtering = {'period': ALL}
コード例 #7
0
ファイル: resources.py プロジェクト: GenPingYuan/Taobao-Top
 class Meta:
     queryset = Product.objects()
     allowed_methods = ('get', )
     authentication = UserAuthentication()
     authorization = Authorization()
     excludes = ('resource_uri', )