changeset 2023:fc5c888428c8 unify_imports

Moved distance marks ashore import into imports file.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 24 Jan 2019 17:36:57 +0100
parents 213f79fde44a
children 6d9fbc62c5a6
files pkg/models/dma.go pkg/models/imports.go
diffstat 2 files changed, 15 insertions(+), 33 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/models/dma.go	Thu Jan 24 17:35:26 2019 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-// This is Free Software under GNU Affero General Public License v >= 3.0
-// without warranty, see README.md and license for details.
-//
-// SPDX-License-Identifier: AGPL-3.0-or-later
-// License-Filename: LICENSES/AGPL-3.0.txt
-//
-// Copyright (C) 2018 by via donau
-//   – Österreichische Wasserstraßen-Gesellschaft mbH
-// Software engineering by Intevation GmbH
-//
-// Author(s):
-//  * Raimund Renkert <raimund.renkert@intevation.de>
-
-package models
-
-import "gemma.intevation.de/gemma/pkg/common"
-
-type (
-	// DistanceMarksAshoreImport specifies an import of the distance marks.
-	DistanceMarksAshoreImport struct {
-		// URL is the capabilities URL of the WFS.
-		URL string `json:"url"`
-		// FeatureType is the layer to use.
-		FeatureType string `json:"feature-type"`
-		// SortBy sorts the feature by this key.
-		SortBy string `json:"sort-by"`
-		// SendEmail is set to true if an email should be send after
-		// importing the axis.
-		SendEmail bool `json:"send-email"`
-		// Attributes are optional attributes.
-		Attributes common.Attributes `json:"attributes,omitempty"`
-	}
-)
--- a/pkg/models/imports.go	Thu Jan 24 17:35:26 2019 +0100
+++ b/pkg/models/imports.go	Thu Jan 24 17:36:57 2019 +0100
@@ -116,4 +116,19 @@
 		// Attributes are optional attributes.
 		Attributes common.Attributes `json:"attributes,omitempty"`
 	}
+
+	// DistanceMarksAshoreImport specifies an import of the distance marks.
+	DistanceMarksAshoreImport struct {
+		// URL is the capabilities URL of the WFS.
+		URL string `json:"url"`
+		// FeatureType is the layer to use.
+		FeatureType string `json:"feature-type"`
+		// SortBy sorts the feature by this key.
+		SortBy string `json:"sort-by"`
+		// SendEmail is set to true if an email should be send after
+		// importing the axis.
+		SendEmail bool `json:"send-email"`
+		// Attributes are optional attributes.
+		Attributes common.Attributes `json:"attributes,omitempty"`
+	}
 )