|
|
@ -1364,13 +1364,14 @@ def changedetection_app(config=None, datastore_o=None):
|
|
|
|
flash("{} watches set to use default notification settings".format(len(uuids)))
|
|
|
|
flash("{} watches set to use default notification settings".format(len(uuids)))
|
|
|
|
|
|
|
|
|
|
|
|
elif (op == 'assign-tag'):
|
|
|
|
elif (op == 'assign-tag'):
|
|
|
|
op_extradata = request.form.get('op_extradata')
|
|
|
|
op_extradata = request.form.get('op_extradata', '').strip()
|
|
|
|
tag_uuid = datastore.add_tag(name=op_extradata)
|
|
|
|
if op_extradata:
|
|
|
|
if op_extradata and tag_uuid:
|
|
|
|
tag_uuid = datastore.add_tag(name=op_extradata)
|
|
|
|
for uuid in uuids:
|
|
|
|
if op_extradata and tag_uuid:
|
|
|
|
uuid = uuid.strip()
|
|
|
|
for uuid in uuids:
|
|
|
|
if datastore.data['watching'].get(uuid):
|
|
|
|
uuid = uuid.strip()
|
|
|
|
datastore.data['watching'][uuid]['tags'].append(tag_uuid)
|
|
|
|
if datastore.data['watching'].get(uuid):
|
|
|
|
|
|
|
|
datastore.data['watching'][uuid]['tags'].append(tag_uuid)
|
|
|
|
|
|
|
|
|
|
|
|
flash("{} watches assigned tag".format(len(uuids)))
|
|
|
|
flash("{} watches assigned tag".format(len(uuids)))
|
|
|
|
|
|
|
|
|
|
|
|