-
+
+
\ No newline at end of file
+
diff --git a/UI/Web/src/app/registration/_components/splash-container/splash-container.component.ts b/UI/Web/src/app/registration/_components/splash-container/splash-container.component.ts
index 9670cd6ee..c5cfa3a65 100644
--- a/UI/Web/src/app/registration/_components/splash-container/splash-container.component.ts
+++ b/UI/Web/src/app/registration/_components/splash-container/splash-container.component.ts
@@ -1,10 +1,18 @@
-import { ChangeDetectionStrategy, Component } from '@angular/core';
+import {ChangeDetectionStrategy, Component, inject} from '@angular/core';
+import {AsyncPipe, NgStyle} from "@angular/common";
+import {NavService} from "../../../_services/nav.service";
@Component({
- selector: 'app-splash-container',
- templateUrl: './splash-container.component.html',
- styleUrls: ['./splash-container.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
- standalone: true
+ selector: 'app-splash-container',
+ templateUrl: './splash-container.component.html',
+ styleUrls: ['./splash-container.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ imports: [
+ NgStyle,
+ AsyncPipe
+ ],
+ standalone: true
})
-export class SplashContainerComponent {}
\ No newline at end of file
+export class SplashContainerComponent {
+ protected readonly navService = inject(NavService);
+}
diff --git a/UI/Web/src/app/user-settings/user-holds/user-holds.component.ts b/UI/Web/src/app/user-settings/user-holds/user-holds.component.ts
index 3915ed3b7..adf7b3fe3 100644
--- a/UI/Web/src/app/user-settings/user-holds/user-holds.component.ts
+++ b/UI/Web/src/app/user-settings/user-holds/user-holds.component.ts
@@ -26,6 +26,4 @@ export class UserHoldsComponent {
private readonly scrobblingService = inject(ScrobblingService);
private readonly destroyRef = inject(DestroyRef);
holds$ = this.scrobblingService.getHolds().pipe(takeUntilDestroyed(this.destroyRef), shareReplay());
-
- constructor() {}
}
diff --git a/openapi.json b/openapi.json
index 63452f70f..baa0266e3 100644
--- a/openapi.json
+++ b/openapi.json
@@ -7335,6 +7335,7 @@
"tags": [
"Scrobbling"
],
+ "summary": "Get the current user's AniList token",
"responses": {
"200": {
"description": "Success"
@@ -7347,7 +7348,9 @@
"tags": [
"Scrobbling"
],
+ "summary": "Update the current user's AniList token",
"requestBody": {
+ "description": "",
"content": {
"application/json": {
"schema": {
@@ -7378,10 +7381,12 @@
"tags": [
"Scrobbling"
],
+ "summary": "Checks if the current Scrobbling token for the given Provider has expired for the current user",
"parameters": [
{
"name": "provider",
"in": "query",
+ "description": "",
"schema": {
"enum": [
0,
@@ -17178,6 +17183,10 @@
"type": "string",
"description": "A query to search against",
"nullable": true
+ },
+ "includeReviews": {
+ "type": "boolean",
+ "description": "Include reviews in the result - Note: Review Scrobbling is disabled"
}
},
"additionalProperties": false