If you have some experience doing Rails development, it's pretty easy. It's basically just a normal Rails app, so, for example if you wanted to add user wishlists:
class Wishlist < ActiveRecord::Base belongs_to :user end #add user.rb to your app/models folder class User < ActiveRecord::Base has_many :wishlists end On Wed, Apr 7, 2010 at 6:11 PM, Tim Uckun <[email protected]> wrote: > How hard is it to create content types with community engine > especially if they have dependent content types. > > For example let's say my users want to create wishlists and share them > and rate them. Some of the content types I am thinking about are > pretty complex with some levels of dependencies to carry around too. > > Thanks. > > -- > You received this message because you are subscribed to the Google Groups > "CommunityEngine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<communityengine%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/communityengine?hl=en. > > -- You received this message because you are subscribed to the Google Groups "CommunityEngine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/communityengine?hl=en.
