Sha256: 97b7693bd3cbba5320f51534f27c8694afc1ff6669d9d7ff1733011dc14546c2

Contents?: true

Size: 1.47 KB

Versions: 20

Compression:

Stored size: 1.47 KB

Contents

# The MIT License (MIT)

# Copyright (c) 2016-2018 Georg Ledermann

# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:

# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.

# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

module RedmineCrm
  module ActsAsDraftable
    class Draft < ActiveRecord::Base
      belongs_to :user
      belongs_to :parent, polymorphic: true, autosave: false

      validates_presence_of :data, :target_type

      def restore
        target_type.constantize.from_draft(self)
      end

      def self.restore_all
        find_each.map(&:restore)
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
redmine_crm-0.0.63 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.62 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.61 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.60 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.59 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.58 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.57 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.56 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.55 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.54 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.53 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.52 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.51 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.50 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.49 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.48 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.47 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.46 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.45 lib/redmine_crm/acts_as_draftable/draft.rb
redmine_crm-0.0.44 lib/redmine_crm/acts_as_draftable/draft.rb