You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -243,10 +245,10 @@ Suppose you want to set a new [Placeholder](#placeholders) `NUMBER` in your Envi
243
245
244
246
```yaml
245
247
environment:
246
-
VARIABLES__NUMBER: "000"
248
+
SETTINGS__VARIABLES__NUMBER: "+123400001"
247
249
```
248
250
249
-
This would internally be converted into `variables.number` matching the config formatting.
251
+
This would internally be converted into `settings.variables.number` matching the config formatting.
250
252
251
253
> [!IMPORTANT]
252
254
> Underscores `_` are removed during Conversion, Double Underscores `__` on the other hand convert the Variable into a nested Object (`__` replaced by `.`)
@@ -283,52 +285,48 @@ api:
283
285
```
284
286
285
287
> [!IMPORTANT]
286
-
> It is highly recommended use API Tokens
287
-
288
-
> _What if I just don't?_
289
-
290
-
Secured Signal API will still work, but important Security Features won't be available
291
-
like Blocked Endpoints and any sort of Auth.
288
+
> Using API Tokens is highly recommended, but not mandatory.
289
+
> Some important Security Features won't be available (like default Blocked Endpoints).
292
290
293
291
> [!NOTE]
294
292
> Blocked Endpoints can be reactivated by manually configuring them
295
293
296
294
### Endpoints
297
295
298
-
Because Secured Signal API is just a Proxy you can use all of the [Signal REST API](https://github.com/bbernhard/signal-cli-rest-api/blob/master/doc/EXAMPLES.md) endpoints except for...
296
+
Since Secured Signal API is just a Proxy you can use all of the [Signal REST API](https://github.com/bbernhard/signal-cli-rest-api/blob/master/doc/EXAMPLES.md) endpoints except for...
299
297
300
-
| Endpoint |
301
-
| :-------------------- |
302
-
| **/v1/about** |
303
-
| **/v1/configuration** |
304
-
| **/v1/devives** |
305
-
| **/v1/register** |
306
-
| **/v1/unregister** |
307
-
| **/v1/qrcodelink** |
308
-
| **/v1/accounts** |
309
-
| **/v1/contacts** |
298
+
| Endpoint | |
299
+
| :-------------------- | ------------------ |
300
+
| **/v1/about** | **/v1/unregister** |
301
+
| **/v1/configuration** | **/v1/qrcodelink** |
302
+
| **/v1/devives** | **/v1/contacts** |
303
+
| **/v1/register** | **/v1/accounts** |
304
+
305
+
These Endpoints are blocked by default due to Security Risks.
310
306
311
307
> [!NOTE]
312
-
> Matching works by checking if the requested Endpoints startswith a Blocked or Allowed Endpoint
308
+
> Matching works by checking if the requested Endpoints starts with a Blocked or an Allowed Endpoint
313
309
314
-
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `blockedEndpoints` in your config:
310
+
You can modify Blocked Endpoints by configuring `blockedEndpoints` in your config:
0 commit comments