ulmic/tramway-dev

View on GitHub
tramway-partner/app/models/tramway/partner/organization.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Tramway
  module Partner
    class Organization < ::Tramway::Partner::ApplicationRecord
      has_many :partnerships, class_name: 'Tramway::Partner::Partnership'

      mount_uploader :logo, PhotoUploader
    end
  end
end