Method: Ditz::Issue#unassign

Defined in:
lib/model-objects.rb

#unassign(who, comment) ⇒ Object

Raises:



208
209
210
211
212
# File 'lib/model-objects.rb', line 208

def unassign who, comment
  raise Error, "not assigned to a release" unless release
  log "unassigned from release #{release}", who, comment
  self.release = nil
end