ulmic/tramway-dev

View on GitHub
tramway-profiles/app/models/tramway/profiles/social_network.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Tramway::Profiles::SocialNetwork < Tramway::ApplicationRecord
  belongs_to :record, polymorphic: true, required: false

  enumerize :network_name, in: %i[vk facebook twitter instagram telegram patreon]
  enumerize :record_type, in: Tramway::Profiles.records
end