diff --git a/src/src/app/app.component.html b/src/src/app/app.component.html
index 53089ad..d33e82b 100644
--- a/src/src/app/app.component.html
+++ b/src/src/app/app.component.html
@@ -1,3 +1,3 @@
diff --git a/src/src/app/common/components/loading-icon/loading-icon.component.spec.ts b/src/src/app/common/components/loading-icon/loading-icon.component.spec.ts
index 162f752..6666cdb 100644
--- a/src/src/app/common/components/loading-icon/loading-icon.component.spec.ts
+++ b/src/src/app/common/components/loading-icon/loading-icon.component.spec.ts
@@ -1,6 +1,6 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
+import {ComponentFixture, TestBed} from '@angular/core/testing';
-import { LoadingIconComponent } from './loading-icon.component';
+import {LoadingIconComponent} from './loading-icon.component';
describe('LoadingIconComponent', () => {
let component: LoadingIconComponent;
diff --git a/src/src/app/common/components/loading-icon/loading-icon.component.ts b/src/src/app/common/components/loading-icon/loading-icon.component.ts
index cc241ab..78e69eb 100644
--- a/src/src/app/common/components/loading-icon/loading-icon.component.ts
+++ b/src/src/app/common/components/loading-icon/loading-icon.component.ts
@@ -1,10 +1,10 @@
-import { Component, Input } from '@angular/core';
+import {Component, Input} from '@angular/core';
-@Component({
- selector: 'app-loading-icon',
- imports: [],
- templateUrl: './loading-icon.component.html',
- styleUrl: './loading-icon.component.scss'
+@Component({
+ selector: 'app-loading-icon',
+ imports: [],
+ templateUrl: './loading-icon.component.html',
+ styleUrl: './loading-icon.component.scss'
})
export class LoadingIconComponent {
@Input() width = '100%';
diff --git a/src/src/app/common/components/logo/logo.component.spec.ts b/src/src/app/common/components/logo/logo.component.spec.ts
index fd3433f..925938c 100644
--- a/src/src/app/common/components/logo/logo.component.spec.ts
+++ b/src/src/app/common/components/logo/logo.component.spec.ts
@@ -1,6 +1,6 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
+import {ComponentFixture, TestBed} from '@angular/core/testing';
-import { LogoComponent } from './logo.component';
+import {LogoComponent} from './logo.component';
describe('LogoComponent', () => {
let component: LogoComponent;
diff --git a/src/src/app/common/components/logo/logo.component.ts b/src/src/app/common/components/logo/logo.component.ts
index ca4dbb2..f85915e 100644
--- a/src/src/app/common/components/logo/logo.component.ts
+++ b/src/src/app/common/components/logo/logo.component.ts
@@ -1,11 +1,11 @@
import {Component, Input} from '@angular/core';
import {Router} from '@angular/router';
-@Component({
- selector: 'app-logo',
- imports: [],
- templateUrl: './logo.component.html',
- styleUrl: './logo.component.scss'
+@Component({
+ selector: 'app-logo',
+ imports: [],
+ templateUrl: './logo.component.html',
+ styleUrl: './logo.component.scss'
})
export class LogoComponent {
@Input() height: number = 50;
diff --git a/src/src/app/common/components/standard-banner/standard-banner.component.html b/src/src/app/common/components/standard-banner/standard-banner.component.html
index cb90466..1b6ba3d 100644
--- a/src/src/app/common/components/standard-banner/standard-banner.component.html
+++ b/src/src/app/common/components/standard-banner/standard-banner.component.html
@@ -1,5 +1,5 @@
-
+
@if (userIsLoggedIn) {
diff --git a/src/src/app/common/components/standard-banner/standard-banner.component.spec.ts b/src/src/app/common/components/standard-banner/standard-banner.component.spec.ts
index b4263c7..1aaf469 100644
--- a/src/src/app/common/components/standard-banner/standard-banner.component.spec.ts
+++ b/src/src/app/common/components/standard-banner/standard-banner.component.spec.ts
@@ -1,6 +1,6 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
+import {ComponentFixture, TestBed} from '@angular/core/testing';
-import { StandardBannerComponent } from './standard-banner.component';
+import {StandardBannerComponent} from './standard-banner.component';
describe('StandardBannerComponent', () => {
let component: StandardBannerComponent;
diff --git a/src/src/app/common/components/standard-banner/standard-banner.component.ts b/src/src/app/common/components/standard-banner/standard-banner.component.ts
index 16d21ae..7b7effa 100644
--- a/src/src/app/common/components/standard-banner/standard-banner.component.ts
+++ b/src/src/app/common/components/standard-banner/standard-banner.component.ts
@@ -1,16 +1,16 @@
-import { Component, OnInit } from '@angular/core';
-import { LogoComponent } from '../logo/logo.component';
-import { environment } from '../../../../environments/environment';
-import { MatButton } from '@angular/material/button';
+import {Component, OnInit} from '@angular/core';
+import {LogoComponent} from '../logo/logo.component';
+import {environment} from '../../../../environments/environment';
+import {MatButton} from '@angular/material/button';
-@Component({
- selector: 'app-standard-banner',
- imports: [
- LogoComponent,
- MatButton
- ],
- templateUrl: './standard-banner.component.html',
- styleUrl: './standard-banner.component.scss'
+@Component({
+ selector: 'app-standard-banner',
+ imports: [
+ LogoComponent,
+ MatButton
+ ],
+ templateUrl: './standard-banner.component.html',
+ styleUrl: './standard-banner.component.scss'
})
export class StandardBannerComponent implements OnInit {
public userIsLoggedIn: boolean = false;
diff --git a/src/src/app/common/components/twitch-login/twitch-login.component.html b/src/src/app/common/components/twitch-login/twitch-login.component.html
index 292433c..9be0621 100644
--- a/src/src/app/common/components/twitch-login/twitch-login.component.html
+++ b/src/src/app/common/components/twitch-login/twitch-login.component.html
@@ -1,4 +1,4 @@
diff --git a/src/src/app/common/components/twitch-login/twitch-login.component.spec.ts b/src/src/app/common/components/twitch-login/twitch-login.component.spec.ts
index d65330e..1dacbf0 100644
--- a/src/src/app/common/components/twitch-login/twitch-login.component.spec.ts
+++ b/src/src/app/common/components/twitch-login/twitch-login.component.spec.ts
@@ -1,6 +1,6 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
+import {ComponentFixture, TestBed} from '@angular/core/testing';
-import { TwitchLoginComponent } from './twitch-login.component';
+import {TwitchLoginComponent} from './twitch-login.component';
describe('TwitchLoginComponent', () => {
let component: TwitchLoginComponent;
diff --git a/src/src/app/common/components/twitch-login/twitch-login.component.ts b/src/src/app/common/components/twitch-login/twitch-login.component.ts
index 5a02801..8e99ee7 100644
--- a/src/src/app/common/components/twitch-login/twitch-login.component.ts
+++ b/src/src/app/common/components/twitch-login/twitch-login.component.ts
@@ -1,14 +1,14 @@
-import { Component, Input } from '@angular/core';
-import { environment } from '../../../../environments/environment';
-import { NgOptimizedImage } from '@angular/common';
+import {Component, Input} from '@angular/core';
+import {environment} from '../../../../environments/environment';
+import {NgOptimizedImage} from '@angular/common';
-@Component({
- selector: 'app-twitch-login',
- imports: [
- NgOptimizedImage
- ],
- templateUrl: './twitch-login.component.html',
- styleUrl: './twitch-login.component.scss'
+@Component({
+ selector: 'app-twitch-login',
+ imports: [
+ NgOptimizedImage
+ ],
+ templateUrl: './twitch-login.component.html',
+ styleUrl: './twitch-login.component.scss'
})
export class TwitchLoginComponent {
/**
diff --git a/src/src/app/common/interface/oauth.ts b/src/src/app/common/interface/oauth.ts
new file mode 100644
index 0000000..0a602a0
--- /dev/null
+++ b/src/src/app/common/interface/oauth.ts
@@ -0,0 +1,5 @@
+export interface OAuth {
+ bearer: string,
+ refresh: string,
+ expiresUtc: string
+}
diff --git a/src/src/app/middleware/auth.guard.spec.ts b/src/src/app/middleware/auth.guard.spec.ts
index 245d5cc..25625b4 100644
--- a/src/src/app/middleware/auth.guard.spec.ts
+++ b/src/src/app/middleware/auth.guard.spec.ts
@@ -1,7 +1,7 @@
-import { TestBed } from '@angular/core/testing';
-import { CanActivateFn } from '@angular/router';
+import {TestBed} from '@angular/core/testing';
+import {CanActivateFn} from '@angular/router';
-import { authGuard } from './auth.guard';
+import {authGuard} from './auth.guard';
describe('authGuardGuard', () => {
const executeGuard: CanActivateFn = (...guardParameters) =>
diff --git a/src/src/app/middleware/auth.guard.ts b/src/src/app/middleware/auth.guard.ts
index da2f1e4..d4bbfe0 100644
--- a/src/src/app/middleware/auth.guard.ts
+++ b/src/src/app/middleware/auth.guard.ts
@@ -1,8 +1,8 @@
-import { CanActivateFn } from '@angular/router';
-import { environment } from "../../environments/environment";
-import { inject } from "@angular/core";
-import { NullinsideService } from "../service/nullinside.service";
-import { of, tap } from "rxjs";
+import {CanActivateFn} from '@angular/router';
+import {environment} from "../../environments/environment";
+import {inject} from "@angular/core";
+import {NullinsideService} from "../service/nullinside.service";
+import {of, tap} from "rxjs";
export const authGuard: CanActivateFn = (_, __) => {
// TODO: Hook up the "returnUrl" in the rest of the application. GitHub issue #
diff --git a/src/src/app/service/nullinside-null.service.ts b/src/src/app/service/nullinside-null.service.ts
index 76f3efd..5369407 100644
--- a/src/src/app/service/nullinside-null.service.ts
+++ b/src/src/app/service/nullinside-null.service.ts
@@ -1,8 +1,8 @@
-import { Injectable } from '@angular/core';
-import { Observable } from 'rxjs';
-import { environment } from '../../environments/environment';
-import { HttpClient } from '@angular/common/http';
-import { ImdbSearch } from '../common/interface/imdb-search';
+import {Injectable} from '@angular/core';
+import {Observable} from 'rxjs';
+import {environment} from '../../environments/environment';
+import {HttpClient} from '@angular/common/http';
+import {ImdbSearch} from '../common/interface/imdb-search';
@Injectable({
providedIn: 'root'
diff --git a/src/src/app/service/nullinside.service.ts b/src/src/app/service/nullinside.service.ts
index a468546..b098de3 100644
--- a/src/src/app/service/nullinside.service.ts
+++ b/src/src/app/service/nullinside.service.ts
@@ -1,10 +1,10 @@
-import { Injectable } from '@angular/core';
-import { HttpClient } from "@angular/common/http";
-import { Observable } from "rxjs";
-import { environment } from "../../environments/environment";
-import { UserRolesResponse } from "../common/interface/user-roles-response";
-import { DockerResource } from '../common/interface/docker-resource';
-import { FeatureToggleResponse } from "../common/interface/feature-toggle-response";
+import {Injectable} from '@angular/core';
+import {HttpClient} from "@angular/common/http";
+import {Observable} from "rxjs";
+import {environment} from "../../environments/environment";
+import {UserRolesResponse} from "../common/interface/user-roles-response";
+import {DockerResource} from '../common/interface/docker-resource';
+import {FeatureToggleResponse} from "../common/interface/feature-toggle-response";
@Injectable({
providedIn: 'root'
diff --git a/src/src/app/view/background-webgl-example/background-webgl-example.component.html b/src/src/app/view/background-webgl-example/background-webgl-example.component.html
index 273ba5f..2b2b3a1 100644
--- a/src/src/app/view/background-webgl-example/background-webgl-example.component.html
+++ b/src/src/app/view/background-webgl-example/background-webgl-example.component.html
@@ -1,10 +1,10 @@
-@if(enum === OpenGlBackgrounds.BOX) {
+@if (enum === OpenGlBackgrounds.BOX) {
} @else {
}
-
+