()
| 16 | } |
| 17 | |
| 18 | func (i *imlAPIKeyService) OnComplete() { |
| 19 | i.IServiceGet = universally.NewGet[APIKey, system.APIKey](i.store, FromEntity) |
| 20 | i.IServiceCreate = universally.NewCreator[Create, system.APIKey](i.store, "system_apikey", i.createEntityHandler, i.uniquestHandler, i.labelHandler) |
| 21 | i.IServiceDelete = universally.NewDelete[system.APIKey](i.store) |
| 22 | i.IServiceEdit = universally.NewEdit[Update, system.APIKey](i.store, i.updateHandler, i.labelHandler) |
| 23 | } |
| 24 | |
| 25 | func (i *imlAPIKeyService) idHandler(e *system.APIKey) int64 { |
| 26 | return e.Id |
nothing calls this directly
no test coverage detected