1
votes

I am new to alfresco (community) and I want to make some basic customization in alfresco's out of the box modules,Discussion module,specifically I want to add some new fields in it and that should be reflect in database of alfresco. As first step I configured alfresco maven SDK? And is it possible with Maven SDK or I have to go for any other programming model.Same for discussion

I want a new field in this form..

2

2 Answers

1
votes

Have you tried creating a rule that would add the classifiable aspect to topics when they are created? That would be the most straightforward way to go.

If that doesn't work you can always just create your own aspect with a custom property. The property can be defined in the content model to have a constraint if your list of categories is hard-coded.

Once you've defined your property in the content model, you'll need to add the aspect to topics. You can do that with a rule, or you can write a Java-based behavior to add it.

With that in place you should be able to edit your Share form configuration to expose the new property as a dropdown.