mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 10:36:54 -07:00
fixed all linting
This commit is contained in:
parent
b43e61f4cb
commit
375208703e
6 changed files with 27 additions and 12 deletions
|
@ -6,7 +6,7 @@ import { Observable } from "rxjs";
|
|||
|
||||
import { ServiceHelpers } from "../service.helpers";
|
||||
|
||||
import { IPlexAuthentication, IPlexLibResponse, IPlexOAuthViewModel,IPlexServer, IPlexServerViewModel, IUsersModel } from "../../interfaces";
|
||||
import { IPlexAuthentication, IPlexLibResponse, IPlexOAuthViewModel, IPlexServer, IPlexServerViewModel, IUsersModel } from "../../interfaces";
|
||||
|
||||
@Injectable()
|
||||
export class PlexService extends ServiceHelpers {
|
||||
|
|
|
@ -37,6 +37,7 @@ export class TesterService extends ServiceHelpers {
|
|||
public pushbulletTest(settings: IPushbulletNotificationSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}pushbullet`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
|
||||
public pushoverTest(settings: IPushoverNotificationSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}pushover`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
|
@ -52,7 +53,7 @@ export class TesterService extends ServiceHelpers {
|
|||
public emailTest(settings: IEmailNotificationSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}email`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
|
||||
|
||||
public plexTest(settings: IPlexServer): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}plex`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
|
@ -67,11 +68,11 @@ export class TesterService extends ServiceHelpers {
|
|||
|
||||
public sonarrTest(settings: ISonarrSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}sonarr`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
}
|
||||
|
||||
public couchPotatoTest(settings: ICouchPotatoSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}couchpotato`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
}
|
||||
|
||||
public telegramTest(settings: ITelegramNotifcationSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}telegram`, JSON.stringify(settings), {headers: this.headers});
|
||||
|
@ -79,10 +80,12 @@ export class TesterService extends ServiceHelpers {
|
|||
|
||||
public sickrageTest(settings: ISickRageSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}sickrage`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
}
|
||||
|
||||
public newsletterTest(settings: INewsletterNotificationSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}newsletter`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
}
|
||||
|
||||
public mobileNotificationTest(settings: IMobileNotificationTestSettings): Observable<boolean> {
|
||||
return this.http.post<boolean>(`${this.url}mobile`, JSON.stringify(settings), {headers: this.headers});
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ import { Injectable } from "@angular/core";
|
|||
import { HttpClient } from "@angular/common/http";
|
||||
import { Observable } from "rxjs";
|
||||
|
||||
import { IIssueCategory, IIssueComments,IIssueCount, IIssues, IIssuesChat, INewIssueComments, IssueStatus, IUpdateStatus } from "../interfaces";
|
||||
import { IIssueCategory, IIssueComments, IIssueCount, IIssues, IIssuesChat, INewIssueComments, IssueStatus, IUpdateStatus } from "../interfaces";
|
||||
import { ServiceHelpers } from "./service.helpers";
|
||||
|
||||
@Injectable()
|
||||
|
@ -40,10 +40,10 @@ export class IssuesService extends ServiceHelpers {
|
|||
public createIssue(issue: IIssues): Observable<number> {
|
||||
return this.http.post<number>(this.url, JSON.stringify(issue), {headers: this.headers});
|
||||
}
|
||||
|
||||
|
||||
public getIssue(id: number): Observable<IIssues> {
|
||||
return this.http.get<IIssues>(`${this.url}${id}`, {headers: this.headers});
|
||||
}
|
||||
}
|
||||
|
||||
public getComments(id: number): Observable<IIssuesChat[]> {
|
||||
return this.http.get<IIssuesChat[]>(`${this.url}${id}/comments`, {headers: this.headers});
|
||||
|
|
|
@ -18,7 +18,8 @@ export class RecentlyAddedService extends ServiceHelpers {
|
|||
|
||||
public getRecentlyAddedTv(): Observable<IRecentlyAddedTvShows[]> {
|
||||
return this.http.get<IRecentlyAddedTvShows[]>(`${this. url}tv/`, {headers: this.headers});
|
||||
}
|
||||
}
|
||||
|
||||
public getRecentlyAddedTvGrouped(): Observable<IRecentlyAddedTvShows[]> {
|
||||
return this.http.get<IRecentlyAddedTvShows[]>(`${this.url}tv/grouped`, {headers: this.headers});
|
||||
}
|
||||
|
|
|
@ -14,8 +14,8 @@ export class EmbyComponent implements OnInit {
|
|||
public embySettings: IEmbySettings;
|
||||
|
||||
constructor(private embyService: EmbyService,
|
||||
private router: Router,
|
||||
private notificationService: NotificationService) {
|
||||
private router: Router,
|
||||
private notificationService: NotificationService) {
|
||||
}
|
||||
|
||||
public ngOnInit() {
|
||||
|
|
|
@ -32,6 +32,17 @@
|
|||
],
|
||||
"no-internal-module": [
|
||||
false
|
||||
],
|
||||
"whitespace": [
|
||||
false,
|
||||
"check-branch",
|
||||
"check-decl",
|
||||
"check-operator",
|
||||
"check-separator",
|
||||
"check-type"
|
||||
],
|
||||
"no-trailing-whitespace":[
|
||||
false
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue