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 / ticket / feed_item.rb
Size: Mime:
module JPlatform
  class Ticket::FeedItem < ::PlatformResource
    include PlatformConcern
    belongs_to :ticket, class_name: 'JPlatform::Ticket'
    belongs_to :author, class_name: 'JPlatform::User'

    validates :ticket_id, :author_id, :message, presence: true
  end
end