11 lines
198 B
Ruby
11 lines
198 B
Ruby
class ServersController < ApplicationController
|
|
|
|
|
|
active_scaffold :server do |conf|
|
|
conf.columns = [:name, :operating_system]
|
|
conf.columns[:operating_system].form_ui = :select
|
|
end
|
|
|
|
|
|
end
|