[SEBA-744] Setting IP Address as a feedback state so that operators can't mess with it

Change-Id: Iaa8792a2f23ced9f0e476bf291af48b2998935ac
diff --git a/xos/synchronizer/models/rcord.xproto b/xos/synchronizer/models/rcord.xproto
index 847bc23..29481d6 100644
--- a/xos/synchronizer/models/rcord.xproto
+++ b/xos/synchronizer/models/rcord.xproto
@@ -90,12 +90,15 @@
 
     required manytoone subscriber->RCORDSubscriber:ips = 1:1001 [
         help_text = "The subscriber the IP address belongs to",
-        db_index = True];
+        db_index = True,
+        feedback_state = True];
     required string ip = 2 [
         help_text = "The unique IP address (either IPv4 or IPv6 / netmask)",
         max_length = 52,
+        feedback_state = True,
         unique_with = "subscriber"];
     optional string description = 3 [
         help_text = "A short description of the IP address",
+        feedback_state = True,
         text = True];
 }