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
1
Merge Requests
1
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
alpha
sun
Commits
0b498a1b
Commit
0b498a1b
authored
Mar 26, 2019
by
王浩
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'haow/dev' into 'test'
Haow/dev See merge request
!144
parents
ea419a52
18622e94
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
tag.py
api/tag.py
+1
-1
user.py
api/user.py
+1
-1
No files found.
api/pictorial.py
View file @
0b498a1b
...
...
@@ -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 @
0b498a1b
...
...
@@ -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/tag.py
View file @
0b498a1b
...
...
@@ -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
...
...
api/user.py
View file @
0b498a1b
...
...
@@ -72,7 +72,7 @@ class UserUpdateOrCreate(APIView):
'phone'
:
request
.
POST
.
get
(
'phone'
),
'email'
:
request
.
POST
.
get
(
'email'
),
'gender'
:
request
.
POST
.
get
(
'gender'
),
'is_tcc'
:
int
(
request
.
POST
.
get
(
'is_tcc'
)),
'is_tcc'
:
int
(
request
.
POST
.
get
(
'is_tcc'
,
0
)),
}
try
:
...
...
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