This content has been marked as final.
Show 3 replies
-
Re: How to register a newly created object type in Jive
charyorde Nov 13, 2013 1:41 AM (in response to charyorde)Hello!
Anyone in the room. Need some help pver here!
I know you heard me. Thanks for listening
-
Re: How to register a newly created object type in Jive
gdinning Nov 13, 2013 9:04 AM (in response to charyorde)In your plugin class, you have to register the new type in the ObjectTypeManager. To do this,
- Have Spring inject the instance of ObjectTypeManager and the instance of your ContentType (i.e. TrendingVideosObjectType).
- In your initPlugin method, call: objectTypeManager.register(trendingVideosObjectType);
Hope that works for you - this is the step I always forget.
-
Re: How to register a newly created object type in Jive
charyorde Nov 19, 2013 1:16 AM (in response to gdinning)Thanks. That was super helpful. Also I'm meant to look at jiveobjecttype table instead.
-