Skip to content

Commit 466e1f8

Browse files
authored
Merge branch 'main' into dev
2 parents 7e9889d + ef2d45f commit 466e1f8

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,15 @@ Because Secured Signal API is just a Proxy you can use all of the [Signal REST A
236236
| **/v1/accounts** |
237237
| **/v1/contacts** |
238238

239-
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `BLOCKED_ENDPOINTS` to a valid json array string
239+
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `BLOCKED_ENDPOINTS` to a Comma seperated List:
240240

241241
```yaml
242242
environment:
243-
BLOCKED_ENDPOINTS: '[ "/v1/register","/v1/unregister","/v1/qrcodelink","/v1/contacts" ]'
243+
BLOCKED_ENDPOINTS: |
244+
/v1/register,
245+
/v1/unregister,
246+
/v1/qrcodelink,
247+
/v1/contacts,
244248
```
245249
246250
#### Variables
@@ -256,7 +260,14 @@ Placeholders can be added by setting `VARIABLES` inside your Environment.
256260

257261
```yaml
258262
environment:
259-
VARIABLES: ' "NUMBER2": "002", "GROUP_CHAT_1": [ "user.id", "000", "001", "group.id" ] '
263+
VARIABLES: |
264+
"NUMBER2": "002",
265+
"GROUP_CHAT_1": [
266+
"user.id",
267+
"000",
268+
"001",
269+
"group.id"
270+
]
260271
```
261272

262273
### Recipients
@@ -265,7 +276,8 @@ Set this Environment Variable to automatically provide default Recipients:
265276

266277
```yaml
267278
environment:
268-
RECIPIENTS: ' [ "user.id", "000", "001", "group.id" ] '
279+
RECIPIENTS: |
280+
user.id, 000, 001, group.id,
269281
```
270282

271283
example:

0 commit comments

Comments
 (0)