redmine_dmsf/lib/redmine_dmsf/patches/user_preference_patch.rb
2017-08-03 12:55:37 +02:00

59 lines
1.6 KiB
Ruby

# encoding: utf-8
#
# Redmine plugin for Document Management System "Features"
#
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
module RedmineDmsf
module Patches
module UserPreference
def self.included(base)
base.send(:include, InstanceMethods)
end
module InstanceMethods
def dmsf_tree_view
self[:dmsf_tree_view] || '1'
end
def dmsf_tree_view=(value)
self[:dmsf_tree_view] = value
end
def dmsf_attachments_upload_choice
self[:dmsf_attachments_upload_choice] || 'DMSF'
end
def dmsf_attachments_upload_choice=(value)
self[:dmsf_attachments_upload_choice] = value
end
end
end
end
end
# Apply patch
Rails.configuration.to_prepare do
unless UserPreference.included_modules.include?(RedmineDmsf::Patches::UserPreference)
UserPreference.send(:include, RedmineDmsf::Patches::UserPreference)
end
end