You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
514 B
Ruby
16 lines
514 B
Ruby
# Copyright © Emilio González Montaña
|
|
# Licence: Attribution & no derivatives
|
|
# * Attribution to the plugin web page URL should be done if you want to use it.
|
|
# https://redmine.ociotec.com/projects/redmine-plugin-scrum
|
|
# * No derivatives of this plugin (or partial) are allowed.
|
|
# Take a look to licence.txt file at plugin root folder for further details.
|
|
|
|
class PendingEffort < ActiveRecord::Base
|
|
|
|
belongs_to :issue
|
|
|
|
include Redmine::SafeAttributes
|
|
safe_attributes :issue_id, :date, :effort
|
|
|
|
end
|