mirror of
https://github.com/discourse/discourse-signatures.git
synced 2025-12-12 09:53:33 +00:00
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
# name: discourse-signatures
|
|
# about: A plugin to get that nostalgia signatures in Discourse Foruns
|
|
# version: 1.0.0
|
|
# author: Rafael Silva <xfalcox@gmail.com>
|
|
# url: https://github.com/xfalcox/discourse-signatures
|
|
|
|
enabled_site_setting :signatures_enabled
|
|
|
|
DiscoursePluginRegistry.serialized_current_user_fields << "see_signatures"
|
|
DiscoursePluginRegistry.serialized_current_user_fields << "signature_url"
|
|
DiscoursePluginRegistry.serialized_current_user_fields << "signature_raw"
|
|
|
|
after_initialize do
|
|
|
|
User.register_custom_field_type('see_signatures', :boolean)
|
|
User.register_custom_field_type('signature_url', :text)
|
|
User.register_custom_field_type('signature_raw', :text)
|
|
|
|
if SiteSetting.signatures_enabled then
|
|
add_to_serializer(:post, :user_signature, false) {
|
|
if SiteSetting.signatures_advanced_mode then
|
|
object.user.custom_fields['signature_raw']
|
|
else
|
|
object.user.custom_fields['signature_url']
|
|
end
|
|
}
|
|
|
|
# I guess this should be the default @ discourse. PR maybe?
|
|
add_to_serializer(:user, :custom_fields, false) {
|
|
if object.custom_fields == nil then
|
|
{}
|
|
else
|
|
object.custom_fields
|
|
end
|
|
}
|
|
end
|
|
end
|
|
|
|
register_asset "javascripts/discourse/templates/connectors/user-custom-preferences/signature-preferences.hbs"
|
|
register_asset "stylesheets/common/signatures.scss"
|