mirror of https://github.com/Ombi-app/Ombi
parent
c0149a6149
commit
094e1ce69f
@ -0,0 +1,17 @@
|
||||
import { Injectable } from "@angular/core";
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class SettingsStateService {
|
||||
|
||||
private issuesEnabled: boolean;
|
||||
|
||||
public getIssue(): boolean {
|
||||
return this.issuesEnabled;
|
||||
}
|
||||
|
||||
public setIssue(settings: boolean): void {
|
||||
this.issuesEnabled = settings;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue