Class: CarrierType

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
MasterModel
Defined in:
app/models/carrier_type.rb

Instance Method Summary collapse

Instance Method Details

#mods_typeObject



7
8
9
10
11
12
13
14
15
# File 'app/models/carrier_type.rb', line 7

def mods_type
  case name
  when 'volume'
    'text'
  else
    # TODO: その他のタイプ
    'software, multimedia'
  end
end