There's no URL nor namespace key present on system's webhook

Created by: elboletaire

When a system's webhook is triggered for creating or destroying a project, it does not indicate the namespace nor the URL of that project created.

This is the current webhook POST data sent by gitlab:

{
   "created_at": "2012-07-21T07:30:54Z",
   "event_name": "project_create",
         "name": "StoreCloud",
  "owner_email": "johnsmith@gmail.com",
   "owner_name": "John Smith",
         "path": "storecloud",
   "project_id": 74 
}

It should be at least one way to identify where is this project really stored.

{
    "namespace": "john"
}

or...

{
    "url": "git@gitlab:john/storecloud.git"
}

or at least...

{
    "path": "john/storecloud"
}