created items and configured back office ui a bit
This commit is contained in:
5
app/controllers/items_controller.rb
Normal file
5
app/controllers/items_controller.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class ItemsController < ApplicationController
|
||||
active_scaffold :"item" do |conf|
|
||||
conf.columns[:unit].form_ui = :select
|
||||
end
|
||||
end
|
||||
4
app/controllers/media_types_controller.rb
Normal file
4
app/controllers/media_types_controller.rb
Normal file
@@ -0,0 +1,4 @@
|
||||
class MediaTypesController < ApplicationController
|
||||
active_scaffold :"media_type" do |conf|
|
||||
end
|
||||
end
|
||||
5
app/controllers/multi_media_descriptions_controller.rb
Normal file
5
app/controllers/multi_media_descriptions_controller.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class MultiMediaDescriptionsController < ApplicationController
|
||||
active_scaffold :"multi_media_description" do |conf|
|
||||
conf.columns[:media_type].form_ui = :select
|
||||
end
|
||||
end
|
||||
4
app/controllers/units_controller.rb
Normal file
4
app/controllers/units_controller.rb
Normal file
@@ -0,0 +1,4 @@
|
||||
class UnitsController < ApplicationController
|
||||
active_scaffold :"unit" do |conf|
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user