Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
j_platform / app / models / j_platform / project.rb
Size: Mime:
module JPlatform
  class Project < ::PlatformResource
    include ProjectConcern
    has_many :project_ticket_lists, class_name: "JPlatform::ProjectTicketList"
    has_many :ticket_lists, class_name: 'JPlatform::TicketList'
    has_many :tickets, class_name: 'JPlatform::Ticket'
    has_many :scheduled_items_groups, class_name: 'JPlatform::ScheduledItemsGroup'

    def to_partial_path
      'j_platform/admin/projects/project'
    end
  end
end