-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add new content authoring event signals
- Loading branch information
1 parent
6ae52b1
commit c0eb4ba
Showing
17 changed files
with
475 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
more information about the project. | ||
""" | ||
|
||
__version__ = "8.2.0" | ||
__version__ = "8.3.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...s/avro/tests/schemas/org+openedx+content_authoring+content_library+created+v1_schema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "CloudEvent", | ||
"type": "record", | ||
"doc": "Avro Event Format for CloudEvents created with openedx_events/schema", | ||
"fields": [ | ||
{ | ||
"name": "content_library", | ||
"type": { | ||
"name": "ContentLibraryData", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "library_key", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "update_blocks", | ||
"type": "boolean" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"namespace": "org.openedx.content_authoring.content_library.created.v1" | ||
} |
25 changes: 25 additions & 0 deletions
25
...s/avro/tests/schemas/org+openedx+content_authoring+content_library+deleted+v1_schema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "CloudEvent", | ||
"type": "record", | ||
"doc": "Avro Event Format for CloudEvents created with openedx_events/schema", | ||
"fields": [ | ||
{ | ||
"name": "content_library", | ||
"type": { | ||
"name": "ContentLibraryData", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "library_key", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "update_blocks", | ||
"type": "boolean" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"namespace": "org.openedx.content_authoring.content_library.deleted.v1" | ||
} |
25 changes: 25 additions & 0 deletions
25
...s/avro/tests/schemas/org+openedx+content_authoring+content_library+updated+v1_schema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "CloudEvent", | ||
"type": "record", | ||
"doc": "Avro Event Format for CloudEvents created with openedx_events/schema", | ||
"fields": [ | ||
{ | ||
"name": "content_library", | ||
"type": { | ||
"name": "ContentLibraryData", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "library_key", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "update_blocks", | ||
"type": "boolean" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"namespace": "org.openedx.content_authoring.content_library.updated.v1" | ||
} |
21 changes: 21 additions & 0 deletions
21
.../event_bus/avro/tests/schemas/org+openedx+content_authoring+course+created+v1_schema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "CloudEvent", | ||
"type": "record", | ||
"doc": "Avro Event Format for CloudEvents created with openedx_events/schema", | ||
"fields": [ | ||
{ | ||
"name": "course", | ||
"type": { | ||
"name": "CourseData", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "course_key", | ||
"type": "string" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"namespace": "org.openedx.content_authoring.course.created.v1" | ||
} |
Oops, something went wrong.