Skip to content

Commit f5e928a

Browse files
committed
updated README to reflect changes
1 parent f77cd6e commit f5e928a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/templates/README.template.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,15 @@ Because Secured Signal API is just a Proxy you can use all of the [Signal REST A
177177
| **/v1/accounts** |
178178
| **/v1/contacts** |
179179
180-
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `BLOCKED_ENDPOINTS` to a valid json array string
180+
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `BLOCKED_ENDPOINTS` to a Comma seperated List:
181181

182182
```yaml
183183
environment:
184-
BLOCKED_ENDPOINTS: '[ "/v1/register","/v1/unregister","/v1/qrcodelink","/v1/contacts" ]'
184+
BLOCKED_ENDPOINTS: |
185+
/v1/register,
186+
/v1/unregister,
187+
/v1/qrcodelink,
188+
/v1/contacts,
185189
```
186190

187191
#### Variables
@@ -206,7 +210,8 @@ Set this Environment Variable to automatically provide default Recipients:
206210

207211
```yaml
208212
environment:
209-
RECIPIENTS: ' [ "user.id", "000", "001", "group.id" ] '
213+
RECIPIENTS: |
214+
user.id, 000, 001, group.id,
210215
```
211216

212217
example:

0 commit comments

Comments
 (0)