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
@@ -160,10 +160,10 @@ Suppose you want to set a new [Placeholder](#placeholders) `NUMBER` in your Envi
160
160
161
161
```yaml
162
162
environment:
163
-
VARIABLES__NUMBER: "000"
163
+
SETTINGS__VARIABLES__NUMBER: "+123400001"
164
164
```
165
165
166
-
This would internally be converted into `variables.number` matching the config formatting.
166
+
This would internally be converted into `settings.variables.number` matching the config formatting.
167
167
168
168
> [!IMPORTANT]
169
169
> Underscores `_` are removed during Conversion, Double Underscores `__` on the other hand convert the Variable into a nested Object (`__` replaced by `.`)
@@ -200,19 +200,15 @@ api:
200
200
```
201
201
202
202
> [!IMPORTANT]
203
-
> It is highly recommended use API Tokens
204
-
205
-
> _What if I just don't?_
206
-
207
-
Secured Signal API will still work, but important Security Features won't be available
208
-
like Blocked Endpoints and any sort of Auth.
203
+
> Using API Tokens is highly recommended, but not mandatory.
204
+
> Some important Security Features won't be available (like default Blocked Endpoints).
209
205
210
206
> [!NOTE]
211
207
> Blocked Endpoints can be reactivated by manually configuring them
212
208
213
209
### Endpoints
214
210
215
-
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...
211
+
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...
216
212
217
213
| Endpoint | |
218
214
| :-------------------- | ------------------ |
@@ -221,27 +217,31 @@ Because Secured Signal API is just a Proxy you can use all of the [Signal REST A
221
217
| **/v1/devives** | **/v1/contacts** |
222
218
| **/v1/register** | **/v1/accounts** |
223
219
220
+
These Endpoints are blocked by default due to Security Risks.
221
+
224
222
> [!NOTE]
225
-
> Matching works by checking if the requested Endpoints startswith a Blocked or Allowed Endpoint
223
+
> Matching works by checking if the requested Endpoints starts with a Blocked or an Allowed Endpoint
226
224
227
-
These Endpoints are blocked by default due to Security Risks, but can be modified by setting `blockedEndpoints` in your config:
225
+
You can modify Blocked Endpoints by configuring `blockedEndpoints` in your config:
0 commit comments