Repository URL to install this package:
|
Version:
2.23.0 ▾
|
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