Class: Unico::MaterialsController

Inherits:
CrudController
  • Object
show all
Defined in:
app/controllers/unico/materials_controller.rb

Direct Known Subclasses

MaterialsController

Instance Method Summary collapse

Instance Method Details

#createObject



11
12
13
14
15
16
# File 'app/controllers/unico/materials_controller.rb', line 11

def create
  object = build_resource
  MaterialCodeGenerator.new(object).generate!

  super
end

#newObject



4
5
6
7
8
9
# File 'app/controllers/unico/materials_controller.rb', line 4

def new
  object = build_resource
  object.active = true

  super
end