Module: ActiveBugzilla::Bug::ServiceManagement

Extended by:
ActiveSupport::Concern
Included in:
ActiveBugzilla::Bug
Defined in:
lib/active_bugzilla/bug/service_management.rb

Defined Under Namespace

Modules: ClassMethods

Constant Summary collapse

ATTRIBUTES_XMLRPC_RENAMES_MAP =
{
  #   Bug       =>  XMLRPC
  :created_by   => :creator,
  :created_on   => :creation_time,
  :duplicate_id => :dupe_of,
  :updated_on   => :last_change_time,

  # Some are absent from what Bugzilla.fields() returns
  :actual_time  => :actual_time,
  :flags        => :flags,
}

Instance Method Summary collapse

Instance Method Details

#attribute_namesObject



114
115
116
# File 'lib/active_bugzilla/bug/service_management.rb', line 114

def attribute_names
  self.class.attribute_names
end