Class: Document

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
Redmine::SafeAttributes
Defined in:
app/models/document.rb

Overview

Redmine - project management software Copyright (C) 2006-2016 Jean-Philippe Lang

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.

Since:

  • 0.4.0

Instance Method Summary collapse

Methods included from Redmine::SafeAttributes

#delete_unsafe_attributes, #safe_attribute?, #safe_attribute_names, #safe_attributes=

Constructor Details

#initialize(attributes = nil, *args) ⇒ Document

Returns a new instance of Document

Since:

  • 1.4.0



49
50
51
52
53
54
# File 'app/models/document.rb', line 49

def initialize(attributes=nil, *args)
  super
  if new_record?
    self.category ||= DocumentCategory.default
  end
end

Instance Method Details

#notified_usersObject

Since:

  • 3.0.0



64
65
66
# File 'app/models/document.rb', line 64

def notified_users
  project.notified_users.reject {|user| !visible?(user)}
end

#updated_onObject

Since:

  • 0.9.0



56
57
58
59
60
61
62
# File 'app/models/document.rb', line 56

def updated_on
  unless @updated_on
    a = attachments.last
    @updated_on = (a && a.created_on) || created_on
  end
  @updated_on
end

#visible?(user = User.current) ⇒ Boolean

Returns:

  • (Boolean)

Since:

  • 0.9.0



45
46
47
# File 'app/models/document.rb', line 45

def visible?(user=User.current)
  !user.nil? && user.allowed_to?(:view_documents, project)
end