From ceceda8dc8dd1af155551a8f2d26d4166234355a Mon Sep 17 00:00:00 2001
From: Maximilian Betz <Maximilian.Betz@awi.de>
Date: Fri, 10 Jun 2022 16:17:19 +0200
Subject: [PATCH] back to sandbox for development,  updated readme

---
 README.md                | 4 ++--
 lib/sensorconnector.dart | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 2c48606..4386a38 100644
--- a/README.md
+++ b/README.md
@@ -72,9 +72,9 @@ Text: #57827E
 ## View & Events
 - "All Events" "Pending Events" on first line above table. Alligned right.  50pix hight distance to table start.   
 - Multiple lines for one event to reduce width.   Alternative: Do not show all event details in table but show them in a separate widget on selection. This could also be the view to edit event details.  
-- Edit mode. Select an event and open event in edit mode with all event details
-- Allow to remove pending events. 
+- Edit mode (only pending events). Select an event and open event in edit mode with all details, allow to remove event.
 - Feedback "Success" to line above table and below top bar. 
+- Show sync widget, show sync status, allow canceling of sync process
 
 
 
diff --git a/lib/sensorconnector.dart b/lib/sensorconnector.dart
index 9d016b3..fb7ac33 100644
--- a/lib/sensorconnector.dart
+++ b/lib/sensorconnector.dart
@@ -5,8 +5,8 @@ import 'package:http/http.dart' as http;
 import 'datamodel.dart';
 
 class SensorConnector {
-  //final String baseUrl = 'https://sandbox.sensor.awi.de/rest/';
-  final String baseUrl = 'https://sensor.awi.de/rest/';
+  final String baseUrl = 'https://sandbox.sensor.awi.de/rest/';
+  //final String baseUrl = 'https://sensor.awi.de/rest/';
   final String loginUrl = 'sensors/contacts/login';
   final String collectionsUrl = 'sensors/collections/getAllCollections?pointInTime=2018-07-03T12%3A30%3A55.389Z';
   final String eventTypesUrl = 'sensors/events/getAllEventTypes';
-- 
GitLab