# HG changeset patch # User Sascha L. Teichmann # Date 1548347617 -3600 # Node ID aa74466feaa8d5a96361a850e6539208e6a5650e # Parent 491084efd15c0db10d84994eb864fb31fdaa4f1d Moved distancemarks virtual to imports file. diff -r 491084efd15c -r aa74466feaa8 pkg/models/distancemarks.go --- a/pkg/models/distancemarks.go Thu Jan 24 17:30:45 2019 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +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): -// * Sascha L. Teichmann - -package models - -import "gemma.intevation.de/gemma/pkg/common" - -type ( - // DistanceMarksVirtualImport specifies an import of distance marks virtual. - DistanceMarksVirtualImport struct { - // URL is the SOAP service URL. - URL string `json:"url"` - // SendEmail is set to true if an email should be send after - // importing the waterway gauges. - SendEmail bool `json:"send-email"` - // Attributes are optional attributes. - Attributes common.Attributes `json:"attributes,omitempty"` - } -) diff -r 491084efd15c -r aa74466feaa8 pkg/models/imports.go --- a/pkg/models/imports.go Thu Jan 24 17:30:45 2019 +0100 +++ b/pkg/models/imports.go Thu Jan 24 17:33:37 2019 +0100 @@ -80,4 +80,15 @@ // Attributes are optional attributes. Attributes common.Attributes `json:"attributes,omitempty"` } + + // DistanceMarksVirtualImport specifies an import of distance marks virtual. + DistanceMarksVirtualImport struct { + // URL is the SOAP service URL. + URL string `json:"url"` + // SendEmail is set to true if an email should be send after + // importing the waterway gauges. + SendEmail bool `json:"send-email"` + // Attributes are optional attributes. + Attributes common.Attributes `json:"attributes,omitempty"` + } )