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
+12-12
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ This extension allows users increasing control over their data.
12
12
Install manually with composer:
13
13
14
14
```sh
15
-
composer require blomstra/gdpr:@beta
15
+
composer require flarum/gdpr:@beta
16
16
```
17
17
18
18
### Use
@@ -27,7 +27,7 @@ From here, users may self-service export their data from the forum, or start an
27
27
If your forum runs multiple queues, ie `low` and `high`, you may specify which queue jobs for this extension are run on in your skeleton's `extend.php` file:
28
28
29
29
```php
30
-
Blomstra\Gdpr\Jobs\GdprJob::$onQueue = 'low';
30
+
Flarum\Gdpr\Jobs\GdprJob::$onQueue = 'low';
31
31
32
32
return [
33
33
... your current extenders,
@@ -40,16 +40,16 @@ You can easily register a new Data type, remove an existing Data type, or exclud
40
40
41
41
#### Registering a new Data Type:
42
42
43
-
Your data type class should implement the `Blomstra\Gdpr\Contracts\DataType`:
43
+
Your data type class should implement the `Flarum\Gdpr\Contracts\DataType`:
0 commit comments