mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-12 17:44:31 +00:00
Merge pull request #4915 from pixelfed/staging
Bump version to v0.11.11
This commit is contained in:
commit
8fa6ae421b
3 changed files with 13 additions and 7 deletions
|
@ -1,6 +1,11 @@
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.11.10...dev)
|
## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.11.11...dev)
|
||||||
|
|
||||||
|
## [v0.11.11 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.10...v0.11.11)
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- Fix api endpoints ([fd7f5dbb](https://github.com/pixelfed/pixelfed/commit/fd7f5dbb))
|
||||||
|
|
||||||
## [v0.11.10 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.9...v0.11.10)
|
## [v0.11.10 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.9...v0.11.10)
|
||||||
|
|
||||||
|
|
|
@ -31,11 +31,6 @@ class AuthServiceProvider extends ServiceProvider
|
||||||
if(config('instance.oauth.pat.enabled')) {
|
if(config('instance.oauth.pat.enabled')) {
|
||||||
Passport::personalAccessClientId(config('instance.oauth.pat.id'));
|
Passport::personalAccessClientId(config('instance.oauth.pat.id'));
|
||||||
}
|
}
|
||||||
Passport::setDefaultScope([
|
|
||||||
'read',
|
|
||||||
'write',
|
|
||||||
'follow',
|
|
||||||
]);
|
|
||||||
|
|
||||||
Passport::tokensCan([
|
Passport::tokensCan([
|
||||||
'read' => 'Full read access to your account',
|
'read' => 'Full read access to your account',
|
||||||
|
@ -45,6 +40,12 @@ class AuthServiceProvider extends ServiceProvider
|
||||||
'admin:write' => 'Modify all data on the server',
|
'admin:write' => 'Modify all data on the server',
|
||||||
'push' => 'Receive your push notifications'
|
'push' => 'Receive your push notifications'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
Passport::setDefaultScope([
|
||||||
|
'read',
|
||||||
|
'write',
|
||||||
|
'follow',
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gate::define('viewWebSocketsDashboard', function ($user = null) {
|
// Gate::define('viewWebSocketsDashboard', function ($user = null) {
|
||||||
|
|
|
@ -23,7 +23,7 @@ return [
|
||||||
| This value is the version of your Pixelfed instance.
|
| This value is the version of your Pixelfed instance.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'version' => '0.11.10',
|
'version' => '0.11.11',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue