0

I'm building a back-office application using Spring Boot and Lightadmin. I'd like to limit creation/editing/deletion for some tables (maybe by obscuring respective buttons). Is there a Java configuration to achieve this?

gfullam
  • 11,531
  • 5
  • 50
  • 64
Orestis
  • 36
  • 6
  • 1
    This question seems a little light on information and perhaps is missing a tag (Java). You may want to read this SO help article: ["How do I ask a good question?"](http://stackoverflow.com/help/how-to-ask) – gfullam Mar 10 '15 at 14:07

1 Answers1

0

For any table that you want to administer in the dashboard, you need to explicitly define a (configuration) class which extends AdministrationConfiguration.

See example here

If you don't extend the class for your table, it will not show up in the dashboard.

David Wu
  • 590
  • 4
  • 9