Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
sun
Commits
365834a6
Commit
365834a6
authored
Mar 28, 2019
by
张永
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.wanmeizhensuo.com:alpha/sun
parents
62d18d1c
66b9ef7d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
pictorial.py
api/pictorial.py
+1
-1
push.py
api/push.py
+1
-1
search.py
api/search.py
+1
-1
tag.py
api/tag.py
+1
-1
No files found.
api/pictorial.py
View file @
365834a6
...
...
@@ -23,7 +23,7 @@ class PictorialListView(APIView):
def
post
(
self
,
request
):
ids
=
json
.
loads
(
request
.
POST
.
get
(
'ids'
,
'[]'
))
updates
=
json
.
loads
(
request
.
POST
.
get
(
'update
s
'
,
'{}'
))
updates
=
json
.
loads
(
request
.
POST
.
get
(
'update'
,
'{}'
))
try
:
self
.
rpc
[
'venus/sun/pictorial/batch/update'
](
updates
=
updates
,
ids
=
ids
)
.
unwrap
()
except
Exception
as
e
:
...
...
api/push.py
View file @
365834a6
...
...
@@ -41,7 +41,7 @@ class PushUpdateOrCreateView(APIView):
url
=
request
.
POST
.
get
(
'url'
,
''
)
if
url
==
'推送帖子'
:
url
=
'alpha://topic_detail?topic_id='
elif
url
==
'推送
小组
'
:
elif
url
==
'推送
画报
'
:
url
=
'alpha://pictorial_detail?pictorial_id='
full_url
=
url
+
pictorial_topic_id
...
...
api/search.py
View file @
365834a6
...
...
@@ -35,7 +35,7 @@ class TagSearchView(APIView):
def
get
(
self
,
request
):
offset
,
count
=
get_offset_count
(
request
)
name
=
request
.
GET
.
get
(
'name'
)
platform
=
request
.
GET
.
get
(
'platform'
)
platform
=
None
#
request.GET.get('platform')
collection
=
request
.
GET
.
get
(
'collection'
)
try
:
data
=
self
.
rpc
[
'venus/sun/tag/search'
](
offset
=
offset
,
count
=
count
,
name
=
name
,
platform
=
platform
,
collection
=
collection
)
.
unwrap
()
...
...
api/tag.py
View file @
365834a6
...
...
@@ -67,7 +67,7 @@ class TagUpdateOrCreateView(APIView):
try
:
data
=
self
.
rpc
[
'venus/sun/tag/edit'
](
id
=
id
,
data
=
data
)
.
unwrap
()
except
Exception
as
e
:
error_logger
.
error
(
u'创建/编辑标签
%
d
信息失败
%
s'
%
(
id
,
e
))
error_logger
.
error
(
u'创建/编辑标签
%
s
信息失败
%
s'
%
(
id
,
e
))
raise
return
data
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment