set creator when creating slice in tenant view
diff --git a/planetstack/core/xoslib/static/js/xosTenant.js b/planetstack/core/xoslib/static/js/xosTenant.js
index 9c45460..0ab8e81 100644
--- a/planetstack/core/xoslib/static/js/xosTenant.js
+++ b/planetstack/core/xoslib/static/js/xosTenant.js
@@ -183,11 +183,12 @@
     }

 

     model = new xos.slicesPlus.model({site: xos.tenant().current_user_site_id,

-                                      name: xos.tenant().current_user_login_base + "_"});

+                                      name: xos.tenant().current_user_login_base + "_",

+                                      creator: xos.tenant().current_user_id});

     console.log(model);

     var detailView = new XOSTenantApp.tenantAddView({model: model,

-                                                    collection: xos.slicesPlus,

-                                                    noSubmitButton: true,

+                                                     collection: xos.slicesPlus,

+                                                     noSubmitButton: true,

                                                     });

     detailView.dialog = $("#tenant-addslice-dialog");

     app.tenantAddSliceInterior.show(detailView);