Skip to content

Instantly share code, notes, and snippets.

@groony
Created July 4, 2018 13:06
Show Gist options
  • Save groony/4f30cf4ca4388960e81d86a8d2399aff to your computer and use it in GitHub Desktop.
Save groony/4f30cf4ca4388960e81d86a8d2399aff to your computer and use it in GitHub Desktop.
ActiveAdmin.register SomeResource do
permit_params :title, :announcement
schema do
required(:announcement).filled(:str?)
required(:title).filled(:str?)
end
form do |f|
f.semantic_errors(*f.object.errors.keys)
f.inputs do
f.input :title
f.input :announcement, as: :text
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment