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
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,15 @@ public function registerBundles()
27
27
);
28
28
}
29
29
```
30
+
#### Configuration
31
+
You can change how the API key should be delivered and the name of the parameter its sent as. By default, this bundle looks for `api_key` in the query string.
32
+
33
+
```yaml
34
+
uecode_api_key:
35
+
delivery: query #or header
36
+
parameter: some_value # defaults to `api_key`
37
+
```
38
+
30
39
#### Entities
31
40
32
41
Assuming you already have a `User` class that extends the `FOSUserBundle`'s base user model,
0 commit comments