Skip to content
Snippets Groups Projects

Changed entity definition to uuid only id

Merged Carsten Logemann requested to merge issue/grant-3498574:3498574-transform-grant-entity into 1.x
Files
2
+ 4
4
@@ -38,16 +38,16 @@ use Drupal\user\Entity\User;
* base_table = "grant",
* admin_permission = "administer grant",
* entity_keys = {
* "id" = "id",
* "id" = "uuid",
* "label" = "email",
* "uuid" = "uuid",
* },
* links = {
* "collection" = "/admin/content/grant",
* "add-form" = "/grant/add",
* "canonical" = "/grant/id/{grant}",
* "edit-form" = "/grant/id/{grant}",
* "delete-form" = "/grant/id/{grant}/delete",
* "canonical" = "/grant/{grant}",
* "edit-form" = "/grant/{grant}",
* "delete-form" = "/grant/{grant}/delete",
* },
* field_ui_base_route = "entity.grant.settings",
* )
Loading