Is it possible to automatically move a note based on a change/addition in its fileClass? #582
Unanswered
cameronj86
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi this is not in the scope of the plugin, yet you could totally write a plugin for it. app.metadataCache.on("metadata-menu:fields-changed", (data)=>{ |
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
-
For example, let's say I have a folder for open tickets. I have three files classes,
backlog
,in progress
andcomplete
. I'd like to have it set up so that when I change the fileClass frombacklog
->in progress
/complete
, the file is moved to a different folder.It's basically the reverse functionality of the
file path
option: instead of "all files in a folder inheriting a fileClass", it is "all file in a fileClass inheriting a folder".Curious if this functionality exists or anyone knows a supplemental plugin that could help? My research so far shows that the 'auto move' functionality is limited mostly to file name. I use Linux so I could potentially scrape together a bash script on cron with a little hand holding.
Beta Was this translation helpful? Give feedback.
All reactions