mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 00:56:22 +00:00
13 lines
238 B
Ruby
13 lines
238 B
Ruby
|
# 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
|