1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

All: Allow searching by note ID or using a callback URL

This commit is contained in:
Laurent Cozic
2023-10-25 14:41:05 +01:00
parent 6b2e577be6
commit 3667bf3ed9
7 changed files with 81 additions and 5 deletions

View File

@ -0,0 +1,3 @@
export default (id: string) => {
return id.match(/^[0-9a-zA-Z]{32}$/);
};