vault backup: 2026-04-14 19:18:54

This commit is contained in:
Vadym Samoilenko 2026-04-14 19:18:54 +01:00
parent 5a82acfca6
commit 0c9c2a14a1

60
99 Daily/Daily.base Normal file
View file

@ -0,0 +1,60 @@
filters:
or:
- file.name.contains(this.file.name)
- file.links.contains(this.file)
properties:
file.name:
displayName: Note
client:
displayName: Client
status:
displayName: Status
file.mtime:
displayName: Modified
views:
- type: table
name: Daily notes
filters:
and:
- '!file.hasTag("daily")'
- '!file.hasTag("monthly")'
- '!file.hasTag("weekly")'
- file.name != this.file.name
order:
- file.name
- client
- status
- file.mtime
sort:
- property: file.mtime
direction: DESC
- type: table
name: Monthly
filters:
and:
- '!file.hasTag("daily")'
- '!file.hasTag("monthly")'
- '!file.hasTag("weekly")'
- file.name != this.file.name
order:
- file.name
- client
- status
sort:
- property: file.name
direction: ASC
- type: table
name: Yearly
filters:
and:
- '!file.hasTag("daily")'
- '!file.hasTag("monthly")'
- '!file.hasTag("weekly")'
- file.name != this.file.name
order:
- file.name
- client
- status
sort:
- property: file.name
direction: ASC