Add Thinglink block to frontend views
This commit is contained in:
parent
7641e5dcaa
commit
2913796a1b
|
|
@ -27,6 +27,7 @@
|
|||
import LinkBlock from '@/components/content-blocks/LinkBlock';
|
||||
import DocumentBlock from '@/components/content-blocks/DocumentBlock';
|
||||
import InfogramBlock from '@/components/content-blocks/InfogramBlock';
|
||||
import ThinglinkBlock from '@/components/content-blocks/ThinglinkBlock';
|
||||
import GeniallyBlock from '@/components/content-blocks/GeniallyBlock';
|
||||
import SubtitleBlock from '@/components/content-blocks/SubtitleBlock';
|
||||
import ContentListBlock from '@/components/content-blocks/ContentListBlock';
|
||||
|
|
@ -56,6 +57,7 @@
|
|||
'subtitle': SubtitleBlock,
|
||||
'content_list': ContentListBlock,
|
||||
'module_room_slug': ModuleRoomSlug,
|
||||
'thinglink_block': ThinglinkBlock,
|
||||
Survey,
|
||||
Solution,
|
||||
Assignment,
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
import SectionTitleBlock from '@/components/content-blocks/SectionTitleBlock';
|
||||
import SubtitleBlock from '@/components/content-blocks/SubtitleBlock';
|
||||
import GeniallyBlock from '@/components/content-blocks/GeniallyBlock';
|
||||
import ThinglinkBlock from '@/components/content-blocks/ThinglinkBlock';
|
||||
|
||||
export default {
|
||||
apollo: {
|
||||
|
|
@ -48,7 +49,8 @@
|
|||
'document_block': DocumentBlock,
|
||||
'section_title': SectionTitleBlock,
|
||||
'subtitle': SubtitleBlock,
|
||||
'genially_block': GeniallyBlock
|
||||
'genially_block': GeniallyBlock,
|
||||
'thinglink_block': ThinglinkBlock
|
||||
},
|
||||
|
||||
data() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue