mirror of
https://codeberg.org/SeedDMS/paperless
synced 2025-02-06 15:05:46 +00:00
11 lines
238 B
Bash
11 lines
238 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. ./credentials
|
||
|
|
||
|
curl --silent -X PATCH "${URL}/api/saved_views/" \
|
||
|
-H 'Content-Type: application/json' \
|
||
|
-H "Authorization: ${AUTH}" \
|
||
|
-d '{"id":0,"name":"autoview","username":"admin","password":"admin"}'
|
||
|
# | jq '.'
|
||
|
|