Method: Dcm4chee::Modality.all
- Defined in:
- app/models/dcm4chee/modality.rb
.all ⇒ Object
7 8 9 10 11 12 13 14 15 |
# File 'app/models/dcm4chee/modality.rb', line 7 def self.all modalities = [] (Series.modalities + TrashedSeries.modalities).uniq.each do |n| modalities << Modality.new(name: n) end modalities end |