Clear New Flag when Editing Client Details #1462
kobayashimaru1701
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
|
Hi, There will be new Source Fields available in the next version, and although this doesn't cover all scenarios you should get a good coverage with a workflow like this: {
"name": "Unmark New When Edited",
"trigger": {
"object_type": "Devices",
"event_type": "update"
},
"conditions": [
{
"logic": "AND",
"conditions": [
{
"field": "devNameSource",
"operator": "equals",
"value": "USER"
},
{
"field": "devVlanSource",
"operator": "equals",
"value": "USER"
}
]
}
],
"actions": [
{
"type": "update_field",
"field": "devIsNew",
"value": "0"
}
]
}See these docs for details: You can already test this if you want to. You can switch to the
Make sure you refresh your browser cache - and click the 🔄 refresh button in the top right corner. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
It would be nice if there were a toggle option to clear the New flag when editing a client. In other words, when clicking into the client's Detail page the New flag should be un-checked.
I know there is a time setting for this but I'd personally rather have the flag clear based on this event so it doesn't fly under my radar. It would also be nice if hitting Save returned you to the client list.
I'm really liking this app though. My router's client list handling is astrocious so this is exactly what I've been wanting, thank you!
Beta Was this translation helpful? Give feedback.
All reactions