profile_design_controller.rb 266 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class ProfileDesignController < BoxOrganizerController needs_profile def available_blocks blocks = [ ArticleBlock, TagsBlock, RecentDocumentsBlock, ProfileInfoBlock ] if profile.has_members? blocks << MembersBlock end blocks end end