Compare commits

...

1 Commits

Author SHA1 Message Date
JC5
25a2466a6a 🤖 Auto commit for release 'develop' on 2026-03-21 2026-03-21 16:26:08 +01:00
4 changed files with 8 additions and 7 deletions

View File

@@ -41,6 +41,7 @@ class IsAdminApi
* @param null|string $guard
*
* @return mixed
*
* @throws AuthenticationException
*/
public function handle(Request $request, Closure $next, $guard = null)
@@ -54,7 +55,7 @@ class IsAdminApi
}
/** @var User $user */
$user = auth()->user();
$user = auth()->user();
/** @var UserRepositoryInterface $repository */
$repository = app(UserRepositoryInterface::class);

View File

@@ -79,7 +79,7 @@ return [
// see cer.php for exchange rates feature flag.
],
'version' => 'develop/2026-03-21',
'build_time' => 1774102650,
'build_time' => 1774106578,
'api_version' => '2.1.0', // field is no longer used.
'db_version' => 28, // field is no longer used.

8
package-lock.json generated
View File

@@ -7143,9 +7143,9 @@
}
},
"node_modules/i18next": {
"version": "25.10.0",
"resolved": "https://registry.npmjs.org/i18next/-/i18next-25.10.0.tgz",
"integrity": "sha512-syBEN80PJ3MOpczGXFtv6OTfKQzgi/VbvgtQQjr1z5b/0xSGa1iG8n5ESG7TVT5scGbbRr/1Du2tufHEkr5pHw==",
"version": "25.10.1",
"resolved": "https://registry.npmjs.org/i18next/-/i18next-25.10.1.tgz",
"integrity": "sha512-d7MZx1UDamSmjbaqFg00w+EXUTqIB8x8cmYRGsAzQqXFVyrNFprGqPItANtlF6V1tuBFyZyp+4/q2MFqODWerg==",
"funding": [
{
"type": "individual",
@@ -7162,7 +7162,7 @@
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.28.6"
"@babel/runtime": "^7.29.2"
},
"peerDependencies": {
"typescript": "^5"

View File

@@ -346,7 +346,7 @@ Route::group(
[
'namespace' => 'FireflyIII\Api\V1\Controllers\Models\UserGroup',
'prefix' => 'v1/user-groups',
'as' => 'api.v1.user-groups.'
'as' => 'api.v1.user-groups.',
],
static function (): void {
Route::get('', ['uses' => 'IndexController@index', 'as' => 'index']);