Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xblock-utils
Overview
Overview
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
edx
xblock-utils
Commits
8da5d62c
Commit
8da5d62c
authored
Oct 15, 2014
by
dragonfi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename publish_event_from_python to publish_event_from_dict
parent
7ae7eb57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
xblockutils/publish_event.py
+2
-2
No files found.
xblockutils/publish_event.py
View file @
8da5d62c
...
@@ -15,9 +15,9 @@ class PublishEventMixin(object):
...
@@ -15,9 +15,9 @@ class PublishEventMixin(object):
except
KeyError
as
e
:
except
KeyError
as
e
:
return
{
'result'
:
'error'
,
'message'
:
'Missing event_type in JSON data'
}
return
{
'result'
:
'error'
,
'message'
:
'Missing event_type in JSON data'
}
return
self
.
publish_event_from_
python
(
event_type
,
data
)
return
self
.
publish_event_from_
dict
(
event_type
,
data
)
def
publish_event_from_
python
(
self
,
event_type
,
data
):
def
publish_event_from_
dict
(
self
,
event_type
,
data
):
for
key
,
value
in
self
.
additional_publish_event_data
.
items
():
for
key
,
value
in
self
.
additional_publish_event_data
.
items
():
if
key
in
data
:
if
key
in
data
:
return
{
'result'
:
'error'
,
'message'
:
'Key should not be in publish_event data: {}'
.
format
(
key
)}
return
{
'result'
:
'error'
,
'message'
:
'Key should not be in publish_event data: {}'
.
format
(
key
)}
...
...
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