Files
fizzy/app/models/entropy/configuration.rb
T
2025-06-04 12:56:11 +02:00

10 lines
192 B
Ruby

class Entropy::Configuration < ApplicationRecord
belongs_to :container, polymorphic: true
class << self
def default
Account.sole.default_entropy_configuration
end
end
end