add option for creating and editing topics to topic type

This commit is contained in:
Helmut Merz 2017-10-01 08:33:49 +02:00
parent 6fd47572f2
commit 6ca85b21db
2 changed files with 4 additions and 2 deletions

View file

@ -31,7 +31,8 @@ type(u'event', u'Termin', options=u'',
type(u'textdocument', u'Text', options=u'',
typeInterface='loops.interfaces.ITextDocument', viewName=u'')
type(u'topic', u'Thema', options=u'action.portlet:createTopic,editTopic',
typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'')
typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'',
options=u'action.portlet:editTopic,createTopic')
type(u'type', u'Typ', options=u'',
typeInterface='loops.interfaces.ITypeConcept', viewName=u'')

View file

@ -31,7 +31,8 @@ type(u'event', u'Event', options=u'',
type(u'textdocument', u'Text', options=u'',
typeInterface='loops.interfaces.ITextDocument', viewName=u'')
type(u'topic', u'Topic', options=u'',
typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'')
typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'',
options=u'action.portlet:editTopic,createTopic')
type(u'type', u'Type', options=u'',
typeInterface='loops.interfaces.ITypeConcept', viewName=u'')