mastodon/app/models/fasp/capability.rb

11 lines
224 B
Ruby
Raw Normal View History

2025-03-28 13:16:40 +01:00
# frozen_string_literal: true
class Fasp::Capability
include ActiveModel::Model
include ActiveModel::Attributes
attribute :id, :string
attribute :version, :string
attribute :enabled, :boolean, default: false
end