Migration to AGL gerrit (update go import)
[src/xds/xds-agent.git] / lib / agent / apiv1-projects.go
index 6fe2238..ceb92bb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017 "IoT.bzh"
+ * Copyright (C) 2017-2018 "IoT.bzh"
  * Author Sebastien Douheret <sebastien@iot.bzh>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -20,9 +20,9 @@ package agent
 import (
        "net/http"
 
+       "gerrit.automotivelinux.org/gerrit/src/xds/xds-agent/lib/xaapiv1"
+       common "gerrit.automotivelinux.org/gerrit/src/xds/xds-common.git/golib"
        "github.com/gin-gonic/gin"
-       "github.com/iotbzh/xds-agent/lib/xaapiv1"
-       common "github.com/iotbzh/xds-common/golib"
 )
 
 // getProjects returns all projects configuration
@@ -56,7 +56,7 @@ func (s *APIService) addProject(c *gin.Context) {
 
        s.Log.Debugln("Add project config: ", cfgArg)
 
-       newFld, err := s.projects.Add(cfgArg, s.sessions.GetID(c))
+       newFld, err := s.projects.Add(cfgArg, s.sessions.GetID(c), c.Request.Host)
        if err != nil {
                common.APIError(c, err.Error())
                return