5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 00:56:22 +00:00
panel/app/models/site/social_distributed_press.rb

13 lines
238 B
Ruby
Raw Normal View History

2023-08-29 20:43:19 +00:00
# frozen_string_literal: true
class Site
# Agrega soporte para Social Distributed Press en los sitios
module SocialDistributedPress
extend ActiveSupport::Concern
included do
encrypts :private_key_pem
end
end
end