You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
930 B

Trestle.resource(:skills) do
menu do
item :skills, icon: "fa fa-star"
end
# Customize the table columns shown on the index view.
#
# table do
# column :name
# column :created_at, align: :center
# actions
# end
# Customize the form fields shown on the new/edit views.
#
# form do |skill|
# text_field :name
#
# row do
# col { datetime_field :updated_at }
# col { datetime_field :created_at }
# end
# end
# By default, all parameters passed to the update and create actions will be
# permitted. If you do not have full trust in your users, you should explicitly
# define the list of permitted parameters.
#
# For further information, see the Rails documentation on Strong Parameters:
# http://guides.rubyonrails.org/action_controller_overview.html#strong-parameters
#
# params do |params|
# params.require(:skill).permit(:name, ...)
# end
end