Add cms_block to uitls mutations
This commit is contained in:
parent
7c959fd018
commit
08970ff780
|
|
@ -47,3 +47,4 @@ server/media/
|
||||||
# test reports
|
# test reports
|
||||||
client/cypress/test-reports/
|
client/cypress/test-reports/
|
||||||
server/test-reports/
|
server/test-reports/
|
||||||
|
.direnv
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ class InputTypes(graphene.Enum):
|
||||||
video_block = 'video_block'
|
video_block = 'video_block'
|
||||||
document_block = 'document_block'
|
document_block = 'document_block'
|
||||||
content_list_item = 'content_list_item'
|
content_list_item = 'content_list_item'
|
||||||
subtitle= 'subtitle'
|
subtitle = 'subtitle'
|
||||||
|
|
||||||
|
|
||||||
class ContentElementValueInput(InputObjectType):
|
class ContentElementValueInput(InputObjectType):
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,8 @@ ALLOWED_BLOCKS = (
|
||||||
'assignment',
|
'assignment',
|
||||||
'document_block',
|
'document_block',
|
||||||
'content_list_item',
|
'content_list_item',
|
||||||
'subtitle'
|
'subtitle',
|
||||||
|
'cms_document_block'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue